import { type FC } from 'react'; import { type GraphId } from '@ironclad/rivet-core'; export type ActionBarProps = { onRunGraph?: (options: { graphId?: GraphId; }) => void; onRunTests?: () => void; onAbortGraph?: () => void; onPauseGraph?: () => void; onResumeGraph?: () => void; }; export declare const ActionBar: FC; //# sourceMappingURL=ActionBar.d.ts.map