import { ClassConstructor } from '../types';
interface InjectableOptions {
    providedIn?: 'root';
}
export declare function Injectable(options?: InjectableOptions): (target: ClassConstructor) => void;
export {};
