import { Content } from './Content'; import { Drawer } from './Drawer'; import { Footer } from './Footer'; import { Header, HeaderAction, HeaderText } from './Header'; type ISidebar = typeof Drawer & { Content: typeof Content; Footer: typeof Footer; Header: typeof Header; HeaderAction: typeof HeaderAction; HeaderText: typeof HeaderText; }; declare const DefaultSidebar: ISidebar; export { DefaultSidebar as Sidebar }; //# sourceMappingURL=index.d.ts.map