@dugongjs/cli
Version:
10 lines (9 loc) • 350 B
TypeScript
import React from "react";
import { type PaneProps } from "../components/pane.js";
export type AggregateIdSelectPaneProps = PaneProps & {
selectedType: string | null;
ids: string[];
selectedId: string | null;
setSelectedId: (value: string) => void;
};
export declare const AggregateIdSelectPane: React.FC<AggregateIdSelectPaneProps>;