import { PropertyValidator } from "../PropertyValidator";
import { CurrencyOptions } from "../../shared";
export declare class IsCurrencyValidator implements PropertyValidator<string> {
    private options;
    constructor(options?: CurrencyOptions | undefined);
    isValid(input: string | undefined): boolean;
}
