import React from "react";
export type AggregateIdSelectPaneProps = {
    isFocused: boolean;
    isLoading: boolean;
    error?: string | null;
    selectedType: string;
    ids: string[];
    selectedId: string | null;
    setSelectedId: (value: string) => void;
};
export declare const AggregateIdSelectPane: React.FC<AggregateIdSelectPaneProps>;
