import { DependencyKey } from '../container/IContainer';
import { InjectionToken } from './InjectionToken';
import { InjectFn } from '../hooks/hook';
import { type constructor } from '../utils/basic';
export declare const toToken: <T = any>(token: InjectFn<T> | InjectionToken<T> | DependencyKey | constructor<T>) => InjectionToken<T>;
export declare const argToToken: (v: unknown) => InjectionToken<unknown>;
