import { NtExecutable, NtExecutableResource } from '@shockpkg/resedit'; /** * Patch projector window title stored in resources (versions before 11.2). * * @param rsrc NtExecutableResource instance. * @param title Window title. * @returns Returns true if found, else false. */ export declare function patchWindowTitleRsrc(rsrc: NtExecutableResource, title: string): boolean; /** * Patch projector window title stored in data (versions from 11.2). * * @param exe NtExecutable instance. * @param address The virtualAddress of inserted section title. */ export declare function patchWindowTitleData(exe: NtExecutable, address: number): void;