import { Project } from 'projen'; import { DriftDetectionWorkflow, DriftDetectionWorkflowOptions } from './base'; export interface BashDriftDetectionWorkflowOptions extends DriftDetectionWorkflowOptions { /** * Path to the output script * @default "drift-detection.sh" */ readonly scriptPath?: string; } export declare class BashDriftDetectionWorkflow extends DriftDetectionWorkflow { private readonly scriptPath; constructor(project: Project, options: BashDriftDetectionWorkflowOptions); private generateBashScript; private generateStageFunction; }