export declare function promiseDictionaryOfMaybeString(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMinLength(name: string, mixed: any, min: number): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMinLengthHandler(min: number): (name: string, mixed: any) => Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMaxLength(name: string, mixed: any, max: number): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMaxLengthHandler(max: number): (name: string, mixed: any) => Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeLength(name: string, mixed: any, args: { min?: number; max?: number; }): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeLengthHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNonEmpty(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeContains(name: string, mixed: any, x: string): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeContainsHandler(x: string): (name: string, mixed: any) => Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNoDuplicate(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNotAllWhitespace(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNonEmptyAndNotAllWhitespace(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMatch(name: string, mixed: any, regex: RegExp): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeMatchHandler(regex: RegExp): (name: string, mixed: any) => Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeEmail(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNotOneOf(name: string, mixed: any, arr: T[]): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeNotOneOfHandler(arr: T[]): (name: string, mixed: any) => Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeBase64(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>; export declare function promiseDictionaryOfMaybeJson(name: string, mixed: any): Promise<((null | undefined | (string)) | null | undefined)[]>;