export declare function isArrayOfMaybeDictionaryOfOneOf(mixed: any, arr: T[]): mixed is ((null | undefined | ({ [key: string]: T; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNotOneOf(mixed: any, arr: NotT[]): mixed is ((null | undefined | ({ [key: string]: T; })) | null | undefined)[];