import { InjectionKey } from '../utils/types'; export declare function provide(key: InjectionKey, value: T): void; export declare function inject(key: InjectionKey): T | undefined; export declare function inject(key: InjectionKey, defaultValue: T): T;