import { IControllerContainer } from '../interfaces'; export default class BasicController implements IControllerContainer { controller: T; readonly priority: number; readonly id: string; constructor(controller: T, id?: string, priority?: number); equals(other: IControllerContainer): boolean; toString(): string; }