export type SearchFieldSize = 'sm' | 'md' | 'lg'; export type SearchFieldShape = 'default' | 'subtle'; export type SearchFieldValue = string; export interface SearchFieldOption { id: string; label: string; group?: string; disabled?: boolean; } export interface SearchFieldProps { value: SearchFieldValue[]; options: SearchFieldOption[]; label: string; placeholder?: string; disabled?: boolean; size?: SearchFieldSize; shape?: SearchFieldShape; error?: string; onBlur?: React.FocusEventHandler; onInputChange?: (term: string) => void; onChange: (newSelected: SearchFieldValue[]) => void; } export declare const SearchField: ({ label, options, value, onChange, onInputChange, onBlur, placeholder, error, disabled, size, shape, }: SearchFieldProps) => import("react/jsx-runtime").JSX.Element;