/** Higher-order range formatter — joins `format(from)` and `format(to)` with `→`. */ export declare const formatRange: (format: (value: unknown) => string) => (range: { from: unknown; to: unknown; }) => string;