import type { PropType, ExtractPropTypes } from 'vue';
import type { DividerPositionType, DividerType } from './interface';
export declare const Props: {
    readonly position: {
        readonly type: PropType<DividerPositionType>;
        readonly default: () => DividerPositionType;
        readonly validator: (value: DividerPositionType) => boolean;
    };
    readonly vertical: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly color: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly fontColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly margin: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly background: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly type: {
        readonly type: PropType<DividerType>;
        readonly validator: (value: DividerType) => boolean;
        readonly default: () => DividerType;
    };
};
export declare type DividerPropsType = ExtractPropTypes<typeof Props>;
