import { SearchkitComponent, ViewOptionsAccessor, RenderComponentType } from "../../../core"; import { HitsProps, HitItemProps, HitsListProps } from "../../"; export interface ViewSwitcherHitsProps extends HitsProps { hitComponents: [{ key: string; title: string; itemComponent?: RenderComponentType; listComponent?: RenderComponentType; defaultOption?: boolean; }]; } export declare class ViewSwitcherHits extends SearchkitComponent { accessor: ViewOptionsAccessor; static propTypes: any; constructor(props: any); defineAccessor(): ViewOptionsAccessor; render(): JSX.Element; }