import { Obj } from '@mathigon/core'; import { CustomElementView, ElementView, Observable } from '../'; /** * Select (radio-button-style) component. */ export declare class Select extends CustomElementView { $active: ElementView; $options: Obj; ready(): void; makeActive($el: ElementView): void; bindVariable(model: Observable, name: string): void; }