import React from "react";
import { type PaneProps } from "../components/pane.js";
export type AggregateTypeSelectPaneProps = PaneProps & {
    types: string[];
    selectedType: string | null;
    setSelectedType: (value: string) => void;
};
export declare const AggregateTypeSelectPane: React.FC<AggregateTypeSelectPaneProps>;
