import type { DividerPosition, DividerType } from './src/interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Divider from "./src/divider"; export declare const VDivider: Install, DividerPosition | null>; readonly vertical: BasicType; readonly color: BasicType, string | null>; readonly fontColor: BasicType, string | null>; readonly margin: BasicType, string | number | null>; readonly height: BasicType, string | number | null>; readonly background: BasicType, string | null>; readonly type: BasicType, DividerType | null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, DividerPosition | null>; readonly vertical: BasicType; readonly color: BasicType, string | null>; readonly fontColor: BasicType, string | null>; readonly margin: BasicType, string | number | null>; readonly height: BasicType, string | number | null>; readonly background: BasicType, string | null>; readonly type: BasicType, DividerType | null>; }>>, { readonly type: DividerType; readonly background: string; readonly color: string; readonly fontColor: string; readonly vertical: boolean; readonly height: string | number; readonly position: DividerPosition; readonly margin: string | number; }>>; /** divider 组件实例类型 */ export type DividerInstance = InstanceType; export * from './src/interface'; export default VDivider;