import './style.css'; import React from 'react'; export interface ITimerWidgetPage { expires_at: number; buyLoading?: boolean; onCountdownFinish?: () => void; container?: string; } export interface IRenderer { minutes: number; seconds: number; completed: number; handleCountdownFinish: () => void; } declare const _default: React.MemoExoticComponent<({ expires_at, buyLoading, onCountdownFinish, container, }: ITimerWidgetPage) => JSX.Element | null>; export default _default;