import { IChassisExtension } from "../interfaces"; /** * Generic "feature" registry to manage ChassisPlugins and ChassisOperations. * */ export declare class Registry { features: any; constructor(); set(feature: T): T; get(name: string): T; }