import { type CiDescriptor, type GitFacts } from "@allurereport/core-api"; import type { GitFlowContext } from "./types.js"; export type BuildGitFlowContextParams = { ci: CiDescriptor; facts?: GitFacts; ancestorLimit: number; }; export declare const shouldAttachGitFlow: (gitFlow: boolean) => boolean; export declare const buildGitFlowContext: (params: BuildGitFlowContextParams) => GitFlowContext | undefined;