import { TServiceParams } from "@digital-alchemy/core"; import { TerminalBuilderEditor, TerminalComponent } from "."; export declare function Registry(i: TServiceParams): { component: (name: string) => TerminalComponent; editor: (name: string) => TerminalBuilderEditor; registerComponent(name: string, component: TerminalComponent): TerminalComponent; registerEditor(name: string, editor: TerminalBuilderEditor): TerminalBuilderEditor; };