import * as React from 'react'; import { Placement } from '../tooltip/util'; declare type Props = { name: string; options: Array<{ value: string | number; label: string | number; disabled?: boolean; }>; onChange: (e: React.SyntheticEvent) => void; disabled?: boolean; invalidMessage?: string; placeholder?: string; placeholderValue?: string; value?: string; className?: string; toolTipPlacement?: Placement; }; declare function Select(props: Props): JSX.Element; declare namespace Select { var defaultProps: { name: string; options: { value: string; label: string; }[]; disabled: boolean; onChange: () => void; placeholderValue: string; }; } export default Select;