/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { FileSystemPath, FileSystemReadResult, FileSystemWriteResult, LLMContent } from "@breadboard-ai/types"; export { noStreams, readFromStart }; declare function readFromStart(path: FileSystemPath, data: LLMContent[] | undefined, start: number): FileSystemReadResult; declare function noStreams(done: boolean, receipt?: boolean): FileSystemWriteResult; //# sourceMappingURL=utils.d.ts.map