export declare const genTitle: (prefix: string, checkAll?: boolean, name?: string) => string;
export declare const genReportInfo: ({ workspace, mrUrl, sourceBranch, targetBranch, repo, repoUrl, checkAll, }: {
    workspace: string;
    mrUrl?: string | undefined;
    sourceBranch?: string | undefined;
    targetBranch?: string | undefined;
    repo?: string | undefined;
    repoUrl?: string | undefined;
    checkAll?: boolean | undefined;
}) => string[];
