export declare function isDictionaryOfArrayOfPotentiallyUnsafeNumberString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfFiniteNumberString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfIntegerString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfGreaterThanString(mixed: any, x: number): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfGreaterThanOrEqualString(mixed: any, x: number): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfLessThanString(mixed: any, x: number): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfLessThanOrEqualString(mixed: any, x: number): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfRangeString(mixed: any, args: { min?: number; max?: number; }): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfPositiveString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNegativeString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNonNegativeString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNaturalNumberString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfOddString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfEvenString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfNotOneOfString(mixed: any, arr: T[]): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfLatitudeString(mixed: any): mixed is { [key: string]: (string)[]; }; export declare function isDictionaryOfArrayOfLongitudeString(mixed: any): mixed is { [key: string]: (string)[]; };