interface Props { value: string; onChange: (value: string) => void; } export declare const Searchbox: ({ value, onChange }: Props) => import("react/jsx-runtime").JSX.Element; export {};