export declare function isArrayOfDictionaryOfHasKeys(mixed: any, keys: T[]): mixed is ({ [key: string]: { [key: string]: any; }; })[]; export declare function isArrayOfDictionaryOfNotHasKeys(mixed: any, keys: T[]): mixed is ({ [key: string]: { [key: string]: any; }; })[];