import React from 'react'; export interface SelectProps { /** Display the input label */ name: string; /** Disabled */ disabled?: boolean; /** Display the input label */ placeholder?: string; /** Display the input label */ options: { label: string; value: any; }[]; /** The input change event handler */ onChange: (event: React.ChangeEvent) => void; /** The selected option */ selected: string; /** autoFocus */ autoFocus?: boolean; } declare const Select: ({ onChange, disabled, placeholder, options, name, selected, autoFocus, }: SelectProps) => JSX.Element; export default Select;