import { FC } from 'react'; export declare const SearchBar: FC<{ value?: string; change?: (value: string) => void; placeholder?: string; options?: Array<{ icon: string; prefix?: string; label: string; click?: () => void; disabled?: boolean; pointer?: { label: string; helper: string; }; }>; }>;