export declare function isDictionaryOfPotentiallyUnsafeNumberString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfFiniteNumberString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfIntegerString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfGreaterThanString(mixed: any, x: number): mixed is { [key: string]: string; }; export declare function isDictionaryOfGreaterThanOrEqualString(mixed: any, x: number): mixed is { [key: string]: string; }; export declare function isDictionaryOfLessThanString(mixed: any, x: number): mixed is { [key: string]: string; }; export declare function isDictionaryOfLessThanOrEqualString(mixed: any, x: number): mixed is { [key: string]: string; }; export declare function isDictionaryOfRangeString(mixed: any, args: { min?: number; max?: number; }): mixed is { [key: string]: string; }; export declare function isDictionaryOfPositiveString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfNegativeString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfNonNegativeString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfNaturalNumberString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfOddString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfEvenString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfNotOneOfString(mixed: any, arr: T[]): mixed is { [key: string]: string; }; export declare function isDictionaryOfLatitudeString(mixed: any): mixed is { [key: string]: string; }; export declare function isDictionaryOfLongitudeString(mixed: any): mixed is { [key: string]: string; };