import { Container } from "."; import { Constructor } from "./types"; export declare function ContainerAware(extend?: TBase): { new (...args: any[]): { container?: Container | undefined; }; } & TBase;