type Fraction = [number, number]; interface DurationValue { empty: boolean; value: number; name: string; fraction: Fraction; shorthand: string; dots: string; names: string[]; } declare function names(): string[]; declare function shorthands(): string[]; declare function get(name: string): DurationValue; declare const value: (name: string) => number; declare const fraction: (name: string) => Fraction; /** @deprecated */ declare const _default: { names: typeof names; shorthands: typeof shorthands; get: typeof get; value: (name: string) => number; fraction: (name: string) => Fraction; }; export { type DurationValue, _default as default, fraction, get, names, shorthands, value };