export declare function promiseMaybeDictionaryOfPotentiallyUnsafeNumber(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfFiniteNumber(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfInteger(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfGreaterThan(name: string, mixed: any, x: number): Promise; export declare function promiseMaybeDictionaryOfGreaterThanHandler(x: number): (name: string, mixed: any) => Promise; export declare function promiseMaybeDictionaryOfGreaterThanOrEqual(name: string, mixed: any, x: number): Promise; export declare function promiseMaybeDictionaryOfGreaterThanOrEqualHandler(x: number): (name: string, mixed: any) => Promise; export declare function promiseMaybeDictionaryOfLessThan(name: string, mixed: any, x: number): Promise; export declare function promiseMaybeDictionaryOfLessThanHandler(x: number): (name: string, mixed: any) => Promise; export declare function promiseMaybeDictionaryOfLessThanOrEqual(name: string, mixed: any, x: number): Promise; export declare function promiseMaybeDictionaryOfLessThanOrEqualHandler(x: number): (name: string, mixed: any) => Promise; export declare function promiseMaybeDictionaryOfRange(name: string, mixed: any, args: { min?: number; max?: number; }): Promise; export declare function promiseMaybeDictionaryOfRangeHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => Promise; export declare function promiseMaybeDictionaryOfPositive(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfNegative(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfNonNegative(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfNaturalNumber(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfOdd(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfEven(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfNotOneOf(name: string, mixed: any, arr: T[]): Promise; export declare function promiseMaybeDictionaryOfNotOneOfHandler(arr: T[]): (name: string, mixed: any) => Promise; export declare function promiseMaybeDictionaryOfLatitude(name: string, mixed: any): Promise; export declare function promiseMaybeDictionaryOfLongitude(name: string, mixed: any): Promise;