import { Provider } from './type';
export interface InjectableOptions {
    providers: Provider[];
}
export declare function Injectable(options?: InjectableOptions): (target: any) => any;
