import { TokenizedString } from '../../../../public/node/output.js'; import React from 'react'; interface SingleTaskProps { title: TokenizedString; task: (updateStatus: (status: TokenizedString) => void) => Promise; onComplete?: (result: T) => void; onAbort?: () => void; noColor?: boolean; } declare const SingleTask: ({ task, title, onComplete, onAbort, noColor }: SingleTaskProps) => React.JSX.Element | null; export { SingleTask };