import React from "react"; import { TextFieldProps } from "../TextField"; export interface SelectOption { value: any; label: string; } export interface SelectProps extends TextFieldProps { options: SelectOption[]; } declare const Select: (props: SelectProps) => JSX.Element; export declare const FormTextField: React.ComponentType; export default Select;