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