import { ReactNode } from 'react'; interface LayoutSectionProps { side: boolean; children: ReactNode; } export declare const LayoutSection: ({ side, children }: LayoutSectionProps) => import("react").JSX.Element; export {};