/// import type { Application } from '../../../../application'; import type { IPipeline } from '../../../../domain'; import type { IModalComponentProps } from '../../../../presentation'; export interface IDeletePipelineModalProps extends IModalComponentProps { application: Application; pipeline: IPipeline; } export declare function DeletePipelineModal(props: IDeletePipelineModalProps): JSX.Element;