import type { BundleMessage } from '@ms-cloudpack/common-types'; import type { FunctionComponent } from 'preact'; export interface TaskResultItemProps { item: BundleMessage; inputPath: string | undefined; /** 0-based index (will be adjusted for display) */ index: number; type: 'error' | 'warning'; } /** * Error or warning item in the details of a task/bundle result. */ export declare const TaskResultItem: FunctionComponent; //# sourceMappingURL=TaskResultItem.d.ts.map