export interface DisassembledFile { memoryReference?: string; instructionCount?: number; /** Should be disassembled as copper instructions? */ copper?: boolean; /** Segment ID */ segmentId?: number; /** Stack frame index */ stackFrameIndex?: number; } /** * Create file path for DisassembledFile */ export declare function disassembledFileToPath(file: DisassembledFile): string; /** * Check if path is for a disassembled file */ export declare function isDisassembledFile(path: string): boolean; /** * Create a DisassembledFile from a path string * * Extracts properties from tokens in filename. */ export declare function disassembledFileFromPath(path: string): DisassembledFile;