///
import * as React from "react";
import { SearchStore } from "../../store";
import * as styles from "./style/list-summary.css";
export declare type ListSummaryStyle = Partial;
export interface ListSummaryProps {
classNames?: ListSummaryStyle;
exportAction?: () => void;
scopes: {
code: string;
label: string;
}[];
scopeLock: boolean;
store: SearchStore;
}
export declare class ListSummary extends React.Component {
private onScopeClick();
private readonly scopeLabel;
private readonly resultSentence;
render(): JSX.Element;
}