import { IMFileBase } from '@mining/ui/core/types'; export declare type IMProgressStatus = 'success' | 'exception' | 'normal' | 'active'; export declare type IMIconType = 'success' | 'exception' | 'encryption' | 'close' | 'edit'; export declare type IMStatus = 'success' | 'exception' | 'default' | 'encryption' | 'processing'; export interface IMFileItem extends IMFileBase { status: IMStatus; percent: number; editable?: boolean; mismatch?: boolean; checked: boolean; }