import { Currency } from '../core/index.js'; /** * Chilean Peso (CLP) * Format: $ 1.500 * Note: CLP doesn't use decimal places in common usage */ declare const CLP: Currency; /** * Chilean Peso with decimals (for precise calculations) * Format: $ 1.500,00 */ declare const CLP_DECIMALS: Currency; export { CLP, CLP_DECIMALS };