import React from "react";
export default function ComboBox(props: ComboBoxProps): React.JSX.Element;
interface ComboBoxProps {
    data: string[];
    inputClassName?: string;
    listItemClassName?: string;
    listWrapperClassName?: string;
    onClick: (value: string) => void;
    placeholder?: string;
}
export {};
