import type { RmCallback, RmOptions } from './types.js'; /** * Remove a file or directory asynchronously. * * This is a ponyfill that exactly matches Node.js fs.rm behavior: * - Uses native fs.rm when available (Node 14.14+) * - Falls back to custom implementation for older Node versions */ declare function rm(path: string, callback: RmCallback): void; declare function rm(path: string, options: RmOptions, callback: RmCallback): void; export default rm;