import React, { ReactNode } from 'react';
type CountDownProps = {
    onFinish?: (val: boolean) => void;
    isFinished?: boolean;
    resendLabel?: ReactNode;
    className?: string;
    onClick?: () => void;
};
export type CountDownHandle = {
    reset: () => void;
    cancel: () => void;
    isFinished: boolean;
} | undefined;
declare const _default: React.ForwardRefExoticComponent<CountDownProps & React.RefAttributes<{
    reset: () => void;
    cancel: () => void;
    isFinished: boolean;
}>>;
export default _default;
