import { Component } from 'react'; import type { SearchScreenProps, SerializableSearchScreenProps } from './SearchScreen'; interface SharedSearchModalProps { visible: boolean; } export interface SerializableSearchModalProps extends SerializableSearchScreenProps, SharedSearchModalProps { } export interface SearchModalProps extends SearchScreenProps, SharedSearchModalProps { } export declare class SearchModal extends Component { render(): JSX.Element; } export {};