import type { FormatPartItem, PartFormatter } from './types';
import type { NumberFormatCurrencyPosition } from './types';
/**
 * Changes the currency sign position.
 * For Norway, the position defaults to "after".
 */
export declare const currencyPositionFormatter: (existingFormatter: PartFormatter | null | undefined, callback: (item: FormatPartItem) => string, position?: NumberFormatCurrencyPosition | null) => PartFormatter;
