export declare type CcyformatOptions = {
    round?: boolean;
    maximumFractionDigits?: number;
};
/**
 * format currency
 */
declare const ccyformat: (currency: string | number, options?: CcyformatOptions) => string;
export default ccyformat;
