import type { JobsPort } from "../../app/ports/jobs-port.js"; import { type ArtifactPage, type ArtifactPagerSource } from "./artifact-pager-source.js"; export interface JobTailSourceOptions { readonly jobs: JobsPort; readonly jobId: string; readonly stream?: "stdout" | "stderr"; readonly pageBytes?: number; } export declare function createJobTailPagerSource(options: JobTailSourceOptions): ArtifactPagerSource | undefined; export declare function jobTailTitle(command: string, live: boolean): string; export declare function isLiveJobStatus(status: string): boolean; export type { ArtifactPage };