UNPKG

285 BTypeScriptView Raw
1import { AvInput } from "./AvInput";
2
3export interface AvSelectProps extends AvInput {
4 options?: Array<Object>;
5 loadOptions?: Function;
6 raw?: boolean;
7 autofill?: boolean | object;
8}
9
10declare const AvSelect: React.ComponentType<AvSelectProps>;
11
12export default AvSelect;