import React from 'react'; import type { IModalComponentProps } from '../../presentation'; export interface IArtifactActionModalProps extends IModalComponentProps { title: string; actionName: string; withComment?: boolean; logCategory?: string; onAction: (comment?: string) => Promise | PromiseLike; onSuccess?: () => void; error?: string; className?: string; } export declare const ActionModal: React.FC;