import { Currency } from '../core/index.js'; /** * Colombian Peso (COP) * Format: $ 1.000,00 */ declare const COP: Currency; /** * Colombian Peso without decimals (common usage) * Format: $ 1.000 */ declare const COP_NO_DECIMALS: Currency; export { COP, COP_NO_DECIMALS };