import type { PropType, ExtractPropTypes } from 'vue';
import type { LayoutDirectionType } from './interface';
export declare const Props: {
    readonly direction: {
        readonly type: PropType<LayoutDirectionType>;
        readonly default: () => LayoutDirectionType;
        readonly validator: (val: LayoutDirectionType) => boolean;
    };
};
export declare type LayoutPropsType = ExtractPropTypes<typeof Props>;
