/** * Patch utility for wrapping native methods */ export declare function patch(source: { [key: string]: any; }, name: string, replacement: (...args: unknown[]) => unknown): () => void;