import { BasicInstance } from './BasicInstance'; /** * An instance with some context but which does not require any special shutdown action. */ export declare class SimpleInstance extends BasicInstance { /** * Constructor. * * @param value the context of the instance. */ constructor(value: C); /** * @inheritdoc */ shutdown(): void | Promise; }