import { TConstructor } from '../types';
/**
 * Injectable decorator.
 */
declare function Injectable(): any;
/**
 * Check whether a class is injected.
 *
 * @param target
 */
declare function checkIsInjected(target: TConstructor): boolean;
export { Injectable, checkIsInjected };
