import { Component } from 'react'; declare type Props = { className?: string; disabled?: boolean; id: string; label: string; name?: string; onInput?: (value: any) => void; onChange?: (value: string) => void; options: { value: string; text: string; }[]; revealValidationMessage?: boolean; style?: object; tabIndex?: number; validationMessage?: string; value?: string; dataTestId?: string; }; declare class SelectBlock extends Component { constructor(props: Props); handleInput: (value: any) => void; onFocus: () => void; onBlur: () => void; onChange: (e: any) => void; render(): JSX.Element; } export default SelectBlock; //# sourceMappingURL=SelectBlock.d.ts.map