import { FormAssociated, ListboxElement } from '@ni/fast-foundation'; declare class Select extends ListboxElement { } interface Select extends FormAssociated { } declare const FormAssociatedSelect_base: typeof Select; /** * A form-associated base class for the Select component. This was copied from the * FAST FormAssociatedSelect (which is not exported by fast-foundation) * * @internal */ export declare class FormAssociatedSelect extends FormAssociatedSelect_base { proxy: HTMLSelectElement; } export {};