/**
 * Layout area type representing which slot a component is rendered in.
 * Used by content area components to detect their position and adjust styling.
 */
export type LayoutArea = 'header' | 'footer' | 'content' | 'start' | 'end' | null;
/**
 * Context for detecting which layout area a component is rendered in.
 * Content area components use this to:
 * - Auto-position dividers correctly
 * - Apply correct semantic elements
 * - Adjust internal spacing
 */
export declare const LayoutAreaContext: import("react").Context<LayoutArea>;
//# sourceMappingURL=LayoutAreaContext.d.ts.map