import { type PropsWithChildren, type FC, type ReactNode, type ComponentProps, type HTMLProps, type PropsWithoutRef } from "react"; import { Box } from "../Box/Box"; type StaticComponents = { Aside: typeof Aside; }; type Props = { /** * Wether the aside should be presented. * * @default true */ open: boolean; /** * A slot for the aside element. */ aside: ReactNode; } & ComponentProps; export declare const SplitViewLayout: FC> & StaticComponents; declare const Aside: FC>, "open">>; export {};