import { Construct } from 'constructs'; import { PipelineStack } from './PipelineStack'; export declare enum ProjectType { CFN = "Cloudformation", CDK = "CDK" } export interface Config { readonly projectName: string; readonly projectType: ProjectType; readonly codeRepositoryName: string; readonly codeRepositoryBranch: string; } export declare class DHPipeline { static createPipeline(construct: Construct, configFile?: string): PipelineStack; }