import * as RadixSelect from "@radix-ui/react-select"; import { DropdownSearchFieldProps } from "../../dropdown/DropdownSearchField"; import { SearchableSelectSize } from "./SearchableSelectTrigger"; export type SearchableSelectPrimitiveProps = RadixSelect.SelectProps & Readonly<{ isSearchable?: boolean; className?: string; placeholder?: string; search?: DropdownSearchFieldProps; renderValue?: (value: string) => React.ReactNode; filterComponent?: React.ReactNode; listMinHeight?: string; contentClassName?: string; withPortal?: boolean; multiline?: boolean; size?: SearchableSelectSize; }> & Pick & React.RefAttributes; export declare function SearchableSelectPrimitive({ className, placeholder, search: searchProps, onOpenChange, children, isSearchable, renderValue, filterComponent, listMinHeight, contentClassName, withPortal, multiline, size, side, ref, ...props }: SearchableSelectPrimitiveProps): import("react").JSX.Element; export declare namespace SearchableSelectPrimitive { var displayName: string; } //# sourceMappingURL=SearchableSelectPrimitive.d.ts.map