import { Project } from 'projen'; import { DriftDetectionWorkflow, DriftDetectionWorkflowOptions } from './base'; export interface GitLabDriftDetectionWorkflowOptions extends DriftDetectionWorkflowOptions { /** * GitLab runner tags */ readonly runnerTags?: string[]; /** * Docker image to use for drift detection * @default "node:18" */ readonly image?: string; } export declare class GitLabDriftDetectionWorkflow extends DriftDetectionWorkflow { private readonly runnerTags; private readonly image; private readonly config; constructor(project: Project, options: GitLabDriftDetectionWorkflowOptions); private generateSummaryScript; }