// @flow import type { ReactComponentStyled } from "styled-components"; import type { Globals, Ref } 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, +name?: string, +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, ...Ref, |}; declare export var SelectContainer: ReactComponentStyled; declare export default React$ComponentType;