import { AbstractControls, ControlType } from "./AbstractControls"; export declare class ControlsHandler { private controls; add(control: AbstractControls): void; get(type: T, name: string): AbstractControls | undefined; getByType(type: T): AbstractControls[]; remove(type: ControlType, name: string): boolean; getAll(): Record; collectAndGenerateStyleLinks(): string[]; }