import { ResultViewProps } from "@elastic/react-search-ui-views";
import { ComponentType } from "react";
interface ResultViewSelectorProps {
    resultView?: ComponentType<ResultViewProps>;
    resultViewPerIndex?: Record<string, ComponentType<ResultViewProps>>;
    resultProps: ResultViewProps;
}
export declare function ResultViewSelector({ resultProps, resultView, resultViewPerIndex }: ResultViewSelectorProps): import("react/jsx-runtime").JSX.Element;
export {};
