import type { PipelineFileSystem } from "./types.js"; export declare function isRecord(value: unknown): value is Record; export declare function defineRecordEntry(record: Record, key: string, value: T): void; export declare function isNotFound(error: unknown): boolean; export declare function readOptionalFile(fs: Pick, filePath: string): Promise; export declare function assertNotAborted(signal: AbortSignal | undefined): void; export declare function createAbortError(): Error;