import type { PropType, CSSProperties, ExtractPropTypes } from 'vue'; export declare const splitLayoutProps: { width: StringConstructor; minSize: NumberConstructor; maxSize: NumberConstructor; space: StringConstructor; collapse: BooleanConstructor; allowCollapse: BooleanConstructor; leftStyle: PropType; rightStyle: PropType; collapseBtnStyle: PropType; vertical: BooleanConstructor; reverse: BooleanConstructor; resizable: BooleanConstructor; responsive: { type: BooleanConstructor; default: null; }; }; export type SplitLayoutProps = ExtractPropTypes;