/** * Minimal path normalization/resolution for `.proto` import statements, * dependency-free so it runs in the browser (Node's `path` is unavailable). * * Ported verbatim from @asyncapi/protobuf-schema-parser * (https://github.com/asyncapi/protobuf-schema-parser), Copyright the * AsyncAPI Initiative, licensed under Apache-2.0 — see THIRD_PARTY_NOTICES.md. */ export declare class Path { static isAbsolute(path: string): boolean; static normalize(path: string): string; static resolve(originPath: string, includePath: string, alreadyNormalized?: boolean): string; }