import * as configuration from "../configuration/index.js"; import * as files from "./index.js"; /** * A link relative to the current location, * i.e. a link not starting with '/' */ export declare class RelativeLink { readonly value: string; constructor(publicPath: string); /** * Assuming this relative link is in the given file, * returns the absolute links that point to the same target as this relative link. */ absolutify(containingLocation: files.Location, publications: configuration.Publications): files.FullLink; } //# sourceMappingURL=relative-link.d.ts.map