@dugongjs/cli
Version:
12 lines (11 loc) • 350 B
TypeScript
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>;