// @flow import type { Globals } from "../common/common.js.flow"; type Option = {| +value: string | number, +label?: string, +disabled?: boolean, |}; type Size = "small" | "normal"; export type Props = {| +size?: Size, +label?: string, +placeholder?: string, +value?: string | number, +disabled?: boolean, +error?: React$Node, +help?: React$Node, +onChange?: (ev: SyntheticInputEvent) => void | Promise, +onFocus?: (ev: SyntheticInputEvent) => void | Promise, +onBlur?: (ev: SyntheticInputEvent) => void | Promise, +options: Option[], +prefix?: React$Node, ...Globals, |}; declare export var SelectContainer: React$ComponentType<>; declare export default React$ComponentType;