import { PropType } from 'vue'; export declare const props: { /** * 是否开启 */ disabled: { type: BooleanConstructor; default: boolean; }; /** * @description 方向 horizontal: 水平 vertical: 垂直 */ direction: { type: PropType<"horizontal" | "vertical">; default: string; }; };