import type { Position } from './interface';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
declare const _sfc_main: DefineComponent<{
    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;
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
    readonly position?: unknown;
    readonly color?: unknown;
    readonly margin?: unknown;
    readonly icon?: unknown;
} & {
    position: Position;
    color: string;
    margin: string;
} & {
    icon?: string | undefined;
}>, {
    position: Position;
    color: string;
    margin: string;
}>;
export default _sfc_main;
