export declare function assertMaybeDictionaryOfPotentiallyUnsafeNumberString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfFiniteNumberString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfIntegerString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfGreaterThanString(name: string, mixed: any, x: number): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfGreaterThanStringHandler(x: number): (name: string, mixed: any) => (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfGreaterThanOrEqualString(name: string, mixed: any, x: number): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfGreaterThanOrEqualStringHandler(x: number): (name: string, mixed: any) => (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfLessThanString(name: string, mixed: any, x: number): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfLessThanStringHandler(x: number): (name: string, mixed: any) => (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfLessThanOrEqualString(name: string, mixed: any, x: number): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfLessThanOrEqualStringHandler(x: number): (name: string, mixed: any) => (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfRangeString(name: string, mixed: any, args: { min?: number; max?: number; }): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfRangeStringHandler(args: { min?: number; max?: number; }): (name: string, mixed: any) => (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfPositiveString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfNegativeString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfNonNegativeString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfNaturalNumberString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfOddString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfEvenString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfNotOneOfString(name: string, mixed: any, arr: T[]): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfNotOneOfStringHandler(arr: T[]): (name: string, mixed: any) => (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfLatitudeString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never; export declare function assertMaybeDictionaryOfLongitudeString(name: string, mixed: any): (null | undefined | ({ [key: string]: string; })) | never;