import { ExtractPropTypes, PropType } from 'vue'; export type ContainerDirection = 'horizontal' | 'vertical'; export declare const containerProps: { readonly direction: { readonly type: PropType; readonly default: undefined; }; }; export declare const headerProps: { readonly height: { readonly type: StringConstructor; readonly default: "60px"; }; }; export declare const footerProps: { readonly height: { readonly type: StringConstructor; readonly default: "60px"; }; }; export declare const asideProps: { readonly width: { readonly type: StringConstructor; readonly default: "200px"; }; }; export type ContainerProps = ExtractPropTypes; export type HeaderProps = ExtractPropTypes; export type FooterProps = ExtractPropTypes; export type AsideProps = ExtractPropTypes;