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