export declare function assertDictionaryOfPotentiallyUnsafeNumberString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfFiniteNumberString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfIntegerString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfGreaterThanString(name: string, mixed: any, x: number): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfGreaterThanStringHandler(x: number): (name: string, mixed: any) => ({ [key: string]: string; }) | never; export declare function assertDictionaryOfGreaterThanOrEqualString(name: string, mixed: any, x: number): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfGreaterThanOrEqualStringHandler(x: number): (name: string, mixed: any) => ({ [key: string]: string; }) | never; export declare function assertDictionaryOfLessThanString(name: string, mixed: any, x: number): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfLessThanStringHandler(x: number): (name: string, mixed: any) => ({ [key: string]: string; }) | never; export declare function assertDictionaryOfLessThanOrEqualString(name: string, mixed: any, x: number): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfLessThanOrEqualStringHandler(x: number): (name: string, mixed: any) => ({ [key: string]: string; }) | never; export declare function assertDictionaryOfRangeString(name: string, mixed: any, args: { min?: number; max?: number; }): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfRangeStringHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => ({ [key: string]: string; }) | never; export declare function assertDictionaryOfPositiveString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfNegativeString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfNonNegativeString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfNaturalNumberString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfOddString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfEvenString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfNotOneOfString(name: string, mixed: any, arr: T[]): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfNotOneOfStringHandler(arr: T[]): (name: string, mixed: any) => ({ [key: string]: string; }) | never; export declare function assertDictionaryOfLatitudeString(name: string, mixed: any): ({ [key: string]: string; }) | never; export declare function assertDictionaryOfLongitudeString(name: string, mixed: any): ({ [key: string]: string; }) | never;