import { Symbol } from './symbol';
export declare class InjectableSymbol extends Symbol<'Injectable'> {
    readonly annotation = "Injectable";
    protected get metadata(): import("@angular/compiler").R3InjectableMetadata | undefined;
    /** Return dependencies injected in the constructor of the injectable */
    getDependencies(): (InjectableSymbol | import("./module.symbol").NgModuleSymbol | import("./directive.symbol").DirectiveSymbol | import("./component.symbol").ComponentSymbol | import("./pipe.symbol").PipeSymbol | import("./provider").Provider)[];
}
