UNPKG

@flatbiz/antd

Version:
18 lines (15 loc) 375 B
import { FC } from 'react'; export interface SmsCountDownProps { onSendRequest: () => Promise<void>; totalTicks?: number; duration?: number; autoStart?: boolean; format?: string; sendTxt?: string; sentTxt?: string; processingTxt?: string; onTick?: (time: number) => void; className?: string; } export declare const SmsCountDown: FC<SmsCountDownProps>; export {};