export declare function promiseDictionaryOfHasKeys(name: string, mixed: any, keys: T[]): Promise<{ [key: string]: { [key: string]: any; }; }>; export declare function promiseDictionaryOfHasKeysHandler(keys: T[]): (name: string, mixed: any) => Promise<{ [key: string]: { [key: string]: any; }; }>; export declare function promiseDictionaryOfNotHasKeys(name: string, mixed: any, keys: T[]): Promise<{ [key: string]: { [key: string]: any; }; }>; export declare function promiseDictionaryOfNotHasKeysHandler(keys: T[]): (name: string, mixed: any) => Promise<{ [key: string]: { [key: string]: any; }; }>;