/** * Layout Component * * Main layout component that provides a consistent structure * for applications using the hazo_llm_api package */ import React from 'react'; interface LayoutProps { children: React.ReactNode; sidebar?: React.ReactNode; header?: React.ReactNode; } /** * Layout component - provides a consistent page structure * @param children - Main content to be displayed * @param sidebar - Optional sidebar component * @param header - Optional header component */ export declare function Layout({ children, sidebar, header }: LayoutProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=layout.d.ts.map