import { Ordinal } from "./lib/types"; export type ValueFormat = { type: "decimal"; } | { type: "currency"; currency: string; notation?: "standard" | "compact"; } | { type: "percent"; } | { type: "datetime"; year?: "numeric"; month?: "short"; day?: "numeric"; }; export declare function formatValue(value: Ordinal, format?: ValueFormat, locale?: Intl.LocalesArgument): string;