interface CountdownTimerInfterface {
    cutOffTime: string;
    currentDate: Date;
    timerText: {
        [key: string]: string;
    };
    dateFormat: string;
    timezone: string;
    orderWithinText: string;
}
declare const CountdownTimer: (props: CountdownTimerInfterface) => import("react/jsx-runtime").JSX.Element;
export default CountdownTimer;
