UNPKG

610 BTypeScriptView Raw
1import InternalLayout, { Content, Footer, Header } from './layout';
2import Sider, { SiderContext } from './Sider';
3export type { BasicProps as LayoutProps } from './layout';
4export type { SiderProps } from './Sider';
5type InternalLayoutType = typeof InternalLayout;
6type CompoundedComponent = InternalLayoutType & {
7 Header: typeof Header;
8 Footer: typeof Footer;
9 Content: typeof Content;
10 Sider: typeof Sider;
11 /** @private Internal Context. Do not use in your production. */
12 _InternalSiderContext: typeof SiderContext;
13};
14declare const Layout: CompoundedComponent;
15export default Layout;