import React from "react"; interface SearchBarProps { onClick?: () => void; onTextSearch?: (searchString?: string) => void; placeholder?: string; expandable?: boolean; /** * Size of the search bar. * - "small": 32px height (matches TextField small) * - "medium": 44px height (matches TextField medium) * @default "medium" */ size?: "smallest" | "small" | "medium" | "large"; innerClassName?: string; className?: string; autoFocus?: boolean; disabled?: boolean; loading?: boolean; inputRef?: React.Ref; /** * Optional initial value for the search input, e.g. from URL params. */ initialValue?: string; } export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, innerClassName, className, autoFocus, disabled, loading, inputRef, initialValue }: SearchBarProps): React.JSX.Element; export {};