import * as React from "react"; import { AbstractPureComponent2 } from "../../common"; import { IElementRefProps, OptionProps } from "../../common/props"; import { IconProps } from "../icon/icon"; export declare type HTMLSelectProps = IHTMLSelectProps; /** @deprecated use HTMLSelectPRops */ export interface IHTMLSelectProps extends IElementRefProps, React.SelectHTMLAttributes { /** Whether this element is non-interactive. */ disabled?: boolean; /** Whether this element should fill its container. */ fill?: boolean; /** Props to spread to the `` element. */ iconProps?: Partial; /** Whether to use large styles. */ large?: boolean; /** Whether to use minimal styles. */ minimal?: boolean; /** Multiple select is not supported. */ multiple?: never; /** Change event handler. Use `event.currentTarget.value` to access the new value. */ onChange?: React.ChangeEventHandler; /** * Shorthand for supplying options: an array of basic types or * `{ label?, value }` objects. If no `label` is supplied, `value` * will be used as the label. */ options?: Array; /** Controlled value of this component. */ value?: string | number; } export declare class HTMLSelect extends AbstractPureComponent2 { render(): JSX.Element; }