import { CosmographSearch as _CosmographSearch, CosmographSearchConfig } from '@cosmograph/cosmograph'; import { CosmographReactComponentProps } from '../cosmograph-react-component'; export type CosmographSearchItem = { [key: string]: string | number; }; export type CosmographSearchProps = CosmographReactComponentProps & CosmographSearchConfig; export type CosmographSearchRef = _CosmographSearch | undefined; export declare const CosmographSearch: import("react").ForwardRefExoticComponent & { ref?: import("react").Ref> | undefined; }>; export type { CosmographSearchConfig };