UNPKG

@hypernetlabs/web-ui

Version:
14 lines 407 B
import React from "react"; interface SelectInputProps { onChange?: (event: React.ChangeEvent<HTMLSelectElement>) => void; label?: string; disabled?: boolean; value?: string; fullWidth?: boolean; options: any[]; optionLabelKey: string; optionValueKey: string; } export declare const SelectInput: React.FC<SelectInputProps>; export {}; //# sourceMappingURL=SelectInput.d.ts.map