import { InputProps } from "../types"; interface SelectInputProps extends InputProps { options: string[]; } export declare const SelectInput: ({ error, placeholder, disabled, type, autoFocus, value, onChange, options }: SelectInputProps) => JSX.Element; export {};