export type FalSummaryMedia = { modality: "image" | "audio" | "video" | "file"; path?: string | null; remoteUrl?: string | null; mimeType?: string | null; }; export interface FalSummaryInput { toolName: string; jobId: string; status: string; modelId: string; reviewState?: "pending" | "accepted" | "denied" | null; media?: FalSummaryMedia[]; error?: string | null; cwd?: string; homeDir?: string; } export declare function buildFalGenerationSummary(input: FalSummaryInput): string; export declare function formatFalPath(pathname: string, options?: { cwd?: string; homeDir?: string; }): string;