import { interfaces } from "./ioc"; export declare class Application { private readonly container; constructor(container: interfaces.Container); bind(serviceIdentifier: interfaces.ServiceIdentifier): interfaces.BindingToSyntax; rebind(serviceIdentifier: interfaces.ServiceIdentifier): interfaces.BindingToSyntax; unbind(serviceIdentifier: interfaces.ServiceIdentifier): void; get(serviceIdentifier: interfaces.ServiceIdentifier): T; isBound(serviceIdentifier: interfaces.ServiceIdentifier): boolean; resolve(constructorFunction: interfaces.Newable): T; getCorePath(type: string, file?: string): string; getConsolePath(type: string, file?: string): string; } //# sourceMappingURL=application.d.ts.map