import { Content, Footer, Header, Layout } from "./layout.js"; import { Sidebar } from "./sidebar.js"; //#region src/layout/index.d.ts type ILayout = typeof Layout & { Header: typeof Header; Footer: typeof Footer; Content: typeof Content; Sidebar: typeof Sidebar; }; declare const DefaultLayout: ILayout; //#endregion export { DefaultLayout }; //# sourceMappingURL=index.d.ts.map