import { AvInput } from "./AvInput"; export interface AvSelectProps extends AvInput { options?: Array; loadOptions?: Function; raw?: boolean; autofill?: boolean | object; } declare const AvSelect: React.ComponentType; export default AvSelect;