export declare function isArrayOfMaybeDictionaryOfHasKeys(mixed: any, keys: T[]): mixed is ((null | undefined | ({ [key: string]: { [key: string]: any; }; })) | null | undefined)[]; export declare function isArrayOfMaybeDictionaryOfNotHasKeys(mixed: any, keys: T[]): mixed is ((null | undefined | ({ [key: string]: { [key: string]: any; }; })) | null | undefined)[];