@availity/reactstrap-validation-select
Version:
Wrapper for react-select to work with availity-reactstrap-validation
19 lines (14 loc) • 390 B
TypeScript
import { AvInput } from './AvInput';
interface AriaFeedbackType {
feedbackId: string;
errorMessage: string;
}
export interface AvSelectProps extends AvInput {
options?: Array<Object>;
loadOptions?: Function;
raw?: boolean;
autofill?: boolean | object;
ariaFeedback?: AriaFeedbackType;
}
declare const AvSelect: React.ComponentType<AvSelectProps>;
export default AvSelect;