import { PropType } from 'vue';
declare const _default: {
    allowHalf: BooleanConstructor;
    color: {
        type: PropType<string | string[]>;
        default: string | string[];
    };
    count: {
        type: NumberConstructor;
        default: number;
    };
    disabled: {
        type: BooleanConstructor;
        default: any;
    };
    gap: {
        type: PropType<string | number>;
        default: string | number;
    };
    icon: {
        type: PropType<(Function | ((h: typeof import("vue").h) => import("@/common").SlotReturnValue))[]>;
    };
    placement: {
        type: PropType<"" | "bottom" | "top">;
        default: "" | "bottom" | "top";
        validator(val: "" | "bottom" | "top"): boolean;
    };
    showText: BooleanConstructor;
    size: {
        type: StringConstructor;
        default: string;
    };
    texts: {
        type: PropType<string[]>;
        default: () => string[];
    };
    value: {
        type: NumberConstructor;
        default: any;
    };
    modelValue: {
        type: NumberConstructor;
        default: any;
    };
    defaultValue: {
        type: NumberConstructor;
        default: number;
    };
    onChange: PropType<(value: number) => void>;
};
export default _default;
