export declare class Validator {
    market(val: string): string;
    uuid(val: string): string;
    queryObject(obj: any): any;
}
export declare function isValidMarket(val: string): boolean;
export declare function isValidUUID(val: string): boolean;
export declare function isValidLimit(val: number): boolean;
export declare function isValidCurrency(val: string): boolean;
declare const Validate: Validator;
export default Validate;
