import { type NodeId, type GraphId } from '@ironclad/rivet-core'; export declare function useLocalExecutor(): { tryRunGraph: (options?: { graphId?: GraphId | undefined; to?: NodeId[] | undefined; from?: NodeId | undefined; } | undefined) => Promise; tryAbortGraph: () => void; tryPauseGraph: () => void; tryResumeGraph: () => void; tryRunTests: (options?: { testSuiteIds?: string[] | undefined; testCaseIds?: string[] | undefined; iterationCount?: number | undefined; } | undefined) => Promise; }; //# sourceMappingURL=useLocalExecutor.d.ts.map