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