export type CurrencyValueType = "string" | "number";
export declare const DEFAULT_CURRENCY_CODE = "BRL";
export declare const DEFAULT_CURRENCY_LOCALE = "pt-BR";
export declare function parseCurrencyValue(value: string | number | null | undefined): number | null;
export declare function formatCurrencyValue(value: string | number | null | undefined, currency?: string, locale?: string): string;
export declare function serializeCurrencyValue(value: string | number | null | undefined, valueType?: CurrencyValueType, currency?: string, locale?: string): string | number | undefined;
