import type { Graph } from "../../core/graph/types"; import type { EditorExecutionStatus } from "../state/executionState"; export interface TopToolbarProps { graph: Graph; readonly: boolean; executionStatus: EditorExecutionStatus; onExecute: () => void; onCancel: () => void; onSave?: () => void; onSerialize: () => void; onValidate: () => void; } export declare function TopToolbar({ graph, readonly, executionStatus, onExecute, onCancel, onSave, onSerialize, onValidate }: TopToolbarProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TopToolbar.d.ts.map