import type { ExecutionRun, PlaywrightScenario, PullRequestSummary } from "./types.js"; export declare function markdownListOrNone(items: string[] | undefined, { emptyText }?: { emptyText?: string; }): string[]; export declare function workflowEventLines(events: PullRequestSummary["evidence"]): string[]; export declare function renderExecutionRunMarkdown(run: ExecutionRun): string; export declare function playwrightScenarioMarkdown(scenarios: PlaywrightScenario[]): string[];