export declare class ChoiceRegistry { private _components; get(type: string): ChoiceComponent | undefined; register(type: string, component: ChoiceComponent): void; unregister(type: string): void; clear(): void; has(type: string): boolean; }