import type { DurationValues } from './duration'; export declare const orderedUnits: readonly ["years", "quarters", "months", "weeks", "days", "hours", "minutes", "seconds", "milliseconds"]; export declare function normalizeValues(values: DurationValues, { roundUp }?: { roundUp?: boolean; }): Partial>; export declare function removeZeros>(values: Partial): Partial; export declare function shiftTo(values: DurationValues, units: (keyof DurationValues)[], options?: { roundUp?: boolean; }): Partial>; export declare function rescale(values: DurationValues, options?: { roundUp?: boolean; }): DurationValues;