export declare function isMaybeDictionaryOfPotentiallyUnsafeNumberString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfFiniteNumberString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfIntegerString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfGreaterThanString(mixed: any, x: number): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfGreaterThanOrEqualString(mixed: any, x: number): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfLessThanString(mixed: any, x: number): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfLessThanOrEqualString(mixed: any, x: number): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfRangeString(mixed: any, args: { min?: number; max?: number; }): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfPositiveString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfNegativeString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfNonNegativeString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfNaturalNumberString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfOddString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfEvenString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfNotOneOfString(mixed: any, arr: T[]): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfLatitudeString(mixed: any): mixed is null | undefined | ({ [key: string]: string; }); export declare function isMaybeDictionaryOfLongitudeString(mixed: any): mixed is null | undefined | ({ [key: string]: string; });