import * as React from "react"; interface IProps extends React.SelectHTMLAttributes { error?: string; label?: string; noBlank?: boolean; options: any[]; small?: boolean; values?: any[]; } export declare const SelectInput: ({ error, label, noBlank, options, small, values, ...rest }: IProps) => JSX.Element; export {};