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