import { ExtractPropTypes, PropType } from 'vue';
export declare const baseLayout: {
    title: {
        type: StringConstructor;
        default: string;
    };
    collapsed: {
        type: BooleanConstructor;
        default: boolean;
    };
    logoSrc: {
        type: StringConstructor;
        default: string;
    };
    onCollapsed: {
        type: PropType<(e: MouseEvent, collapsed: boolean) => void>;
    };
};
export declare type BaseLayoutProps = ExtractPropTypes<typeof baseLayout>;
export * from '@uivjs/vue-layout';
export declare const BaseLayout: import("vue").DefineComponent<{
    title: {
        type: StringConstructor;
        default: string;
    };
    collapsed: {
        type: BooleanConstructor;
        default: boolean;
    };
    logoSrc: {
        type: StringConstructor;
        default: string;
    };
    onCollapsed: {
        type: PropType<(e: MouseEvent, collapsed: boolean) => void>;
    };
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
    title: {
        type: StringConstructor;
        default: string;
    };
    collapsed: {
        type: BooleanConstructor;
        default: boolean;
    };
    logoSrc: {
        type: StringConstructor;
        default: string;
    };
    onCollapsed: {
        type: PropType<(e: MouseEvent, collapsed: boolean) => void>;
    };
}>>, {
    title: string;
    collapsed: boolean;
    logoSrc: string;
}>;
