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