import React from 'react';
import './ComboBox.css';
export interface ComboBoxOption {
    value: string;
    label: string;
}
export interface ComboBoxProps {
    options: ComboBoxOption[];
    value?: string;
    onChange?: (value: string) => void;
    placeholder?: string;
    disabled?: boolean;
    className?: string;
}
export declare const ComboBox: React.FC<ComboBoxProps>;
