import type { DangerResults } from "../dsl/results.ts"; /** Format: `DangerID: danger-id-{id};` */ export declare const dangerIDToString: (id: string) => string; /** Format file and line info for HTML comments */ export declare const fileLineToString: (file: string, line: number) => string; /** Generate signature with runtime name and href */ export declare const dangerSignature: (results: DangerResults) => string; /** Full signature with optional commit ID */ export declare const dangerSignaturePostfix: (results: DangerResults, commitID?: string) => string; /** Comment to show when issues are found */ export declare const messageForResultWithIssues = "Found some issues. Don't worry, everything is fixable."; /** * Creates a GitHub issue comment from Danger Results. */ export declare function template(dangerID: string, results: DangerResults, commitID?: string): string; /** * Creates an inline comment from Danger Results for a specific file/line. */ export declare function inlineTemplate(dangerID: string, results: DangerResults, file: string, line: number): string; //# sourceMappingURL=template.d.ts.map