export declare function isArrayOfMaybeDictionaryOfPotentiallyUnsafeNumber(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfFiniteNumber(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfInteger(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfGreaterThan(mixed: any, x: number): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfGreaterThanOrEqual(mixed: any, x: number): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfLessThan(mixed: any, x: number): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfLessThanOrEqual(mixed: any, x: number): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfRange(mixed: any, args: { min?: number; max?: number; }): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfPositive(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNegative(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNonNegative(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNaturalNumber(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfOdd(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfEven(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNotOneOf(mixed: any, arr: T[]): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfLatitude(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfLongitude(mixed: any): mixed is ((null | undefined | ({ [key: string]: number; })) | null | undefined)[];