import { URL } from 'node:url'; /** Node.js-specific URL class, imported from the `node:url` module. */ declare const NodeUrl: { new (url: string | URL, base?: string | URL): URL; prototype: URL; canParse(input: string | URL, base?: string | URL): boolean; createObjectURL(blob: import("node:buffer").Blob): string; parse(input: string | URL, base?: string | URL): URL | null; revokeObjectURL(id: string): void; }; export { NodeUrl as URL }; export * from './lib/index.ts'; //# sourceMappingURL=index-node.d.ts.map