import Sider from './Sider';
import HozLayout from './HozLayout';
import './index.less';
import { Header, Layout as RawLayout, Container, VerticalLayoutStyle as VerticalLayout, BothSidesLayoutStyle as BothSidesLayout } from './styles';
/**
 * 我们通过Layout的对象属性导出了其余的相关组件。
 * 不过，还是建议直接使用import `import { Header } from '$packageName$`。
 * @public
 */
export declare type ILayout = typeof RawLayout & {
    Header: typeof Header;
    Container: typeof Container;
    Sider: typeof Sider;
    VerticalLayout: typeof VerticalLayout;
    HozLayout: typeof HozLayout;
    BothSidesLayout: typeof BothSidesLayout;
};
/**
 * @public
 */
declare const Layout: ILayout;
export default Layout;
export { RawLayout as Layout, Header, Container, Sider, VerticalLayout, HozLayout, BothSidesLayout };
