import { PropType } from "vue"; type Direction = 'vertical' | 'horizontal'; type Type = 'dashed' | 'solid'; export declare const SDividerProps: { /** * @description 分割线的方向. 此项不具备响应式,请确保该值不会被改变 */ readonly direction: { readonly type: PropType; readonly default: "horizontal"; }; /** * @description 分割线的类型 */ readonly status: { readonly type: PropType; readonly default: "solid"; }; /** * @description 分割线分割出来的宽度/高度 */ readonly gap: { readonly type: NumberConstructor; }; /** * @description 分割线的文本 */ readonly text: StringConstructor; /** * @description 分割线文本所处的位置. 此项不具备响应式,请确保该值不会被改变 */ readonly placement: { readonly type: PropType; readonly default: "center"; }; /** * @description 分割线文本的前缀图标 */ readonly prefixIcon: StringConstructor; /** * @description 分割线文本的后缀图标 */ readonly suffixIcon: StringConstructor; }; export {};