import type { NodeEditor } from '../editor';
import type { StoredGraph } from './types';
interface Props {
    editor: NodeEditor;
    formId?: string;
    existingGraph?: StoredGraph;
}
declare const MacroBlockForm: import("svelte").Component<Props, {
    getResponse: () => Promise<StoredGraph>;
}, "">;
type MacroBlockForm = ReturnType<typeof MacroBlockForm>;
export default MacroBlockForm;
