import { Dictionary } from '../utils';
export interface ImageJSONPart {
    filename: string;
    crc: number;
    len: number;
    zLen: number;
    partitionIndex?: string;
}
export type ImageJSON = Dictionary<{
    parts: ImageJSONPart[];
}>;
