import { ReactNode } from 'react'; export type SearchOption = { value: string; description: string; image?: string; }; export interface SearchProps { onChange?: (value: string) => void; withoutBg?: boolean; placeholder?: string; examples?: string[]; options?: SearchOption[]; children?: ReactNode; } export declare const Search: ({ withoutBg, options, children, examples, placeholder, onChange }: SearchProps) => JSX.Element;