import { SqError } from './types';
/**
 * The specified amount is not expressed in a valid format for the provided currency.
 */
export declare class InvalidCurrencyFormatError extends SqError {
    constructor(amount: string, currencyCode: string);
}
