export declare function isDictionaryOfPotentiallyUnsafeNumber(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfFiniteNumber(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfInteger(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfGreaterThan(mixed: any, x: number): mixed is { [key: string]: number; }; export declare function isDictionaryOfGreaterThanOrEqual(mixed: any, x: number): mixed is { [key: string]: number; }; export declare function isDictionaryOfLessThan(mixed: any, x: number): mixed is { [key: string]: number; }; export declare function isDictionaryOfLessThanOrEqual(mixed: any, x: number): mixed is { [key: string]: number; }; export declare function isDictionaryOfRange(mixed: any, args: { min?: number; max?: number; }): mixed is { [key: string]: number; }; export declare function isDictionaryOfPositive(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfNegative(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfNonNegative(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfNaturalNumber(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfOdd(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfEven(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfNotOneOf(mixed: any, arr: T[]): mixed is { [key: string]: number; }; export declare function isDictionaryOfLatitude(mixed: any): mixed is { [key: string]: number; }; export declare function isDictionaryOfLongitude(mixed: any): mixed is { [key: string]: number; };