export declare function isMaybeDictionaryOfOneOf(mixed: any, arr: T[]): mixed is null | undefined | ({ [key: string]: T; }); export declare function isMaybeDictionaryOfNotOneOf(mixed: any, arr: NotT[]): mixed is null | undefined | ({ [key: string]: T; });