interface CdkDriftDetectionScriptProps { project: any; outputPath?: string; } /** * Projen helper to emit the drift detection script into the repository so * GitHub workflows can execute it from a stable location. * * This mirrors the pattern used by CdkChangesetScript, but writes the * drift script (detect-drift.ts) under the workflows scripts directory by default. */ export declare class CdkDriftDetectionScript { constructor(props: CdkDriftDetectionScriptProps); } export {};