export interface CountDownValue { hours?: string | number; minutes?: string | number; seconds?: string | number; } export interface TimeCountingProps { value?: string | number; }