import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react'; import type { LayoutPreset } from '../../components/layout/pharos-layout'; export interface PharosLayoutProps extends DetailedHTMLProps, HTMLElement> { /** * Indicates the type of layout to use. */ preset?: LayoutPreset; /** * Indicates the areas to use for the inner grid. */ areas?: string; /** * Indicates the rows to use for the inner grid. */ rows?: string; /** * Indicates the row gap to use for the inner grid. */ rowGap?: string; /** * Indicates the HTML tag to use for the inner grid. */ tag?: string; } export declare const PharosLayout: FC; //# sourceMappingURL=pharos-layout.d.ts.map