export type DurationFormatTypes = number | string | null | undefined;
export declare function formatDuration(time: DurationFormatTypes, emptyValue?: string, zeroValue?: string): string | string[];
