export declare function resolveZ2FId(specifier: string, resolvedAbsolutePath: string, viteRoot: string, importer?: string): string | null; /** * Inverse of `resolveZ2FId`: parse a normalized virtual module id back into * `(schemaFile, variant)`. Used by the load and HMR hooks. * * Returns `null` if the id is not a z2f virtual id. */ export declare function parseZ2FId(id: string): { schemaFile: string; variant: string; } | null; //# sourceMappingURL=resolve-id.d.ts.map