import * as React from "react";
import type { SelectOption } from "./types";
export interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
    name: string;
    label?: string;
    options: SelectOption[];
    containerClassName?: string;
    isClearable?: boolean;
    searchable?: boolean;
    filterPlaceholder?: string;
    caseSensitive?: boolean;
    filterFunction?: (option: SelectOption, searchTerm: string) => boolean;
}
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;
export { Select };
