import type { PropType } from 'vue';
export declare const Props: {
    readonly modelValue: {
        readonly type: PropType<number>;
        readonly default: () => number;
    };
    readonly color: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly voidColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly showText: BooleanConstructor;
    readonly sayText: {
        readonly type: PropType<string[]>;
        readonly default: () => string[];
    };
};
