/** * `formatManualAdvanceComment` — renders the structured issue comment posted * by `cockpit advance` per AD-1 / D-R5. * * Inputs are regex-validated before interpolation so a malformed `gate`, * `actor`, or `ts` cannot inject HTML/markdown into the marker body. * * `actor` is optional: when `undefined` or empty, the `actor=` attribute is * omitted from the HTML comment and the ` by **@**` clause is dropped * from the sentence (contract: FR-003, `contracts/manual-advance-marker.md`). */ export interface ManualAdvanceMarker { gate: string; actor?: string; ts: string; } export declare function formatManualAdvanceComment(marker: ManualAdvanceMarker): string; //# sourceMappingURL=manual-advance-marker.d.ts.map