/** * Resolve a Solid Pod base URL (with trailing slash) from WebID / optional podUrl / optional storages. * Priority: * 1) storages (solid:storage / pim:storage) preferring same-origin with WebID * 2) podUrl first path segment (if not "profile") * 3) webId first path segment (if not "profile") * 4) webId origin */ export interface PodBaseOptions { webId: string; podUrl?: string; storages?: string[]; } export declare function resolvePodBase(options: PodBaseOptions): string; //# sourceMappingURL=pod-root.d.ts.map