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