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