import { type ReactElement } from "react"; import { type TypographyProps } from "./typography"; export interface TimerProps { to: number; icon?: boolean; countdown?: boolean; variant?: TypographyProps["variant"]; seconds?: boolean; className?: { root?: string; icon?: string; }; } export declare const Timer: ({ to, countdown, variant, icon, seconds, className, }: TimerProps) => ReactElement; //# sourceMappingURL=timer.d.ts.map