import { PropType } from 'vue';
import type { Position } from './interface';
export declare const Props: {
    readonly position: {
        readonly type: PropType<Position>;
        readonly default: () => Position;
        readonly validator: (v: Position) => boolean;
    };
    readonly color: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly margin: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly icon: StringConstructor;
};
