import type { ExtractPropTypes, PropType } from 'vue';
export declare const countButtonProps: {
    value: {
        type: (StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[];
    };
    count: {
        type: NumberConstructor;
        default: number;
    };
    beforeStartFunc: {
        type: PropType<() => Promise<boolean>>;
        default: null;
    };
};
export declare type CountButtonProps = ExtractPropTypes<typeof countButtonProps>;
