interface AnimateProgressProps { from: number; to: number; onUpdate: (value: number) => void; minDuration: number; } export declare const animateStepWithMinDuration: ({ from, to, onUpdate, minDuration, }: AnimateProgressProps) => Promise; export {};