import type { ExtractPropTypes, PropType } from 'vue'; export declare const countDownButtonProps: { value: { type: (StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[]; }; count: { type: NumberConstructor; default: number; }; beforeStartFunc: { type: PropType<() => Promise>; default: null; }; }; export declare type CountDownButtonProps = ExtractPropTypes; export declare const countDownProps: { value: { type: StringConstructor; }; size: { type: StringConstructor; validator: (v: any) => boolean; }; count: { type: NumberConstructor; default: number; }; sendCodeApi: { type: PropType<() => Promise>; default: null; }; }; export declare type CountDownProps = ExtractPropTypes; export declare const countDownInputProps: { value: { type: StringConstructor; }; size: { type: StringConstructor; validator: (v: any) => boolean; }; count: { type: NumberConstructor; default: number; }; sendCodeApi: { type: PropType<() => Promise>; default: null; }; }; export declare type CountDownInputProps = ExtractPropTypes;