import { Option } from './index';
import { HTMLAttributes } from 'react';
interface SearchableSelectProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'id' | 'aria-label' | 'aria-describedby'> {
    options: Option[];
    placeholder?: string;
    onChange: (value: string) => void;
    className?: string;
    defaultValue?: string;
    disabled?: boolean;
    error?: boolean;
    required?: boolean;
    name?: string;
    id?: string;
    "aria-label"?: string;
    "aria-describedby"?: string;
}
export declare const SearchableSelect: ({ options, placeholder, onChange, className, defaultValue, disabled, error, required, name, id, "aria-label": ariaLabel, "aria-describedby": ariaDescribedby, ...props }: SearchableSelectProps) => import("react/jsx-runtime").JSX.Element;
export {};
