import type { ComponentProps, FC, PropsWithChildren, ReactNode } from "react"; import { Box } from "../Box/Box"; type Props = { aside?: ReactNode; }; export declare const AsideLayout: FC & ComponentProps>; export {};