import { InSystemProgramming } from './InSystemProgramming';
import { RAMAddress } from './RAMAddress';
export declare class RAMWriter {
private isp;
address: RAMAddress;
constructor(isp: InSystemProgramming);
writeToRAM(buffer: Buffer): Promise<RAMWriter>;
private uploadChunk(buffer);
}