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>; default: null; }; }; export declare type CountButtonProps = ExtractPropTypes;