/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { InputValues, ReanimationController, ReanimationFrame, ReanimationFrameController, ReanimationMode, ReanimationState, ReplayResults, ResumeResults } from "@breadboard-ai/types"; export declare class Reanimator implements ReanimationController { #private; constructor(resumeFrom: ReanimationState, inputs?: InputValues); enter(invocationPath: number[]): ReanimationFrameController; } export declare class FrameReanimator implements ReanimationFrameController { #private; constructor(frame: ReanimationFrame | undefined); mode(): ReanimationMode; replay(): ReplayResults; resume(): ResumeResults; } //# sourceMappingURL=reanimator.d.ts.map