import { colorIndex } from '../../constants/colors/colors.types'; export type FormatCountdown = 'dd:hh:mm:ss' | 'dd:hh:mm' | 'hh:mm:ss' | 'hh:mm' | 'mm:ss'; export interface CountdownProps { endDate: Date; format?: FormatCountdown; interval?: number; color?: colorIndex; backgroundColor?: colorIndex; onExpired?: () => void; }