import { CSSProperties } from 'react'; export interface CountdownProps extends Pick, "onAnimationEnd" | "onAnimationStart"> { id?: string; className?: string; /** * Millisekunder å telle ned fra */ from: number; isPaused?: boolean; style?: CSSProperties; }