import { DebugProtocol } from "@vscode/debugprotocol";
/**
 * Disassemble a buffer into CPU instructions
 */
export declare function disassemble(buffer: string, startAddress?: number): Promise<DisassembledOutput>;
export interface DisassembledOutput {
    instructions: DebugProtocol.DisassembledInstruction[];
    code: string;
}
