import type { UiNode } from '@ankhorage/contracts'; import React from 'react'; import type { InsertCatalogEntry, StudioComponentMetaRegistry } from '../index'; export interface StudioInsertDialogProps { readonly componentMeta: StudioComponentMetaRegistry; readonly entries: InsertCatalogEntry[]; readonly findNode: (id: string) => UiNode | null; readonly onDismiss: () => void; readonly onInsert: (entry: InsertCatalogEntry) => boolean; readonly rootNode: UiNode | null; readonly visible: boolean; } export declare function StudioInsertDialog(props: StudioInsertDialogProps): React.JSX.Element; //# sourceMappingURL=StudioInsertDialog.d.ts.map