import { unitOfTime } from "moment";
export declare type CountdownProps = {
    limit: number;
    type: string;
    unit: unitOfTime.Diff;
    value: string;
};
declare const _default: ({ type, unit, value, limit, ...props }: CountdownProps) => JSX.Element;
export default _default;
