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