///
///
import { Command } from '../../Constants';
import type { ProtocolRequest } from '../ProtocolEvent';
export declare class RemoveBreakpointsRequest implements ProtocolRequest {
static fromJson(data: {
requestId: number;
breakpointIds: number[];
}): RemoveBreakpointsRequest;
static fromBuffer(buffer: Buffer): RemoveBreakpointsRequest;
toBuffer(): Buffer;
success: boolean;
/**
* How many bytes were read by the `fromBuffer` method. Only populated when constructed by `fromBuffer`
*/
readOffset: number;
data: {
/**
* The number of breakpoints in the breakpoints array.
*/
numBreakpoints: number;
/**
* An array of breakpoint IDs representing the breakpoints to be removed.
*/
breakpointIds: any[];
packetLength: number;
requestId: number;
command: Command;
};
}