declare interface LayoutVariant { /** * @default "medium" */ density: "low" | "medium" | "high"; } declare type LayoutVariantMap = { [key in keyof LayoutVariant]: Array; }; export declare type LayoutVariantProps = Partial; export declare type LayoutSlotName = "root" | "content"; export declare const layoutVariantMap: LayoutVariantMap; export declare const layout: (( props?: LayoutVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [LayoutVariantProps, Omit]; }