import { type TestResult } from "@allurereport/core-api"; import { type ForgePluginTestResult } from "./types.js"; export declare const isJiraIssueKey: (issue: string) => boolean; export declare const findJiraLink: (tr: TestResult) => import("@allurereport/core-api").TestLink | undefined; export declare const prepareTestResults: (trs: TestResult[]) => ForgePluginTestResult[]; export declare const trimName: (name: string) => string; export declare const trimParameters: (p: string) => string; export declare const trimCiInfoLabel: (label: string) => string;