import React from 'react'; export * from './resultTypes'; export declare type SearchProps = { search: (query: string) => React.ReactNode[] | Promise; }; export declare function Search({ search }: SearchProps): JSX.Element;