import { ParamType } from "../interfaces";
export interface ValidatorResult {
    error?: string;
    value?: any;
}
export declare class Validator {
    validateParam(value: string | undefined, type?: ParamType, isRequired?: boolean, options?: any[], paramName?: string): ValidatorResult;
    private checkEmpty;
}
