import { TypeOf } from "../util"; import { EntityType } from "../metadata"; import { Service } from "./service"; export declare type ResolveService = (type: TypeOf) => Service; export declare class ServiceProvider { private _services; private _resolve; constructor(resolve: ResolveService); get(entityType: EntityType): Promise; }