import { IsCurrencyOptions as vtsIsCurrencyOptions } from "@fireflysemantics/validatorts"; /** * Checks if the string is a valid currency amount. * If given value is not a string, then it returns false. * * @param value The value being checked. * @param options The options configuration {@link IsCurrencyOptions} * @return True if the string is a valid currency amount, false otherwise. */ export declare function isCurrency(value: string, options?: vtsIsCurrencyOptions): boolean; /** * Rexport IsCurrencyOptions */ export declare type IsCurrencyOptions = vtsIsCurrencyOptions;