import React from 'react'; import { ProcessStatus } from '../../../types'; interface ProcessCardProps { style?: any; processKey: string; name: string; status: ProcessStatus; executed: boolean; startedDate: string; endDate: string; onSuccess: () => void; onError: () => void; } declare const ProcessCard: ({ style, processKey, name, status, executed, startedDate, endDate, onSuccess, onError, }: ProcessCardProps) => React.JSX.Element; export default ProcessCard;