import { TokenType, TokenValue } from 'brandi'; declare type InjectionHooks = { [K in keyof T]: T[K] extends TokenValue ? () => TokenType : never; }; export declare const createInjectionHooks: []>(...tokens: T) => InjectionHooks; export {};