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