import type { ExtractPropTypes, PropType } from 'vue'; export declare function dividerProps(): { prefixCls: StringConstructor; type: { type: PropType<"" | "horizontal" | "vertical">; default: string; }; dashed: { type: BooleanConstructor; default: boolean; }; orientation: { type: PropType<"center" | "left" | "right">; default: string; }; plain: { type: BooleanConstructor; default: boolean; }; orientationMargin: (NumberConstructor | StringConstructor)[]; }; export type DividerProps = Partial>>;