import { ContentAbsoluteUrl, ContentAnyLocal, ContentExplicitOrRelative, ContentRelative } from "./content_types.js"; //#region src/block_meta/content_conversion.d.ts declare function mapRemoteToAbsolute(rootUrl: string): (value: T) => Exclude | ContentAbsoluteUrl; /** * Creates transformer of relative content paths, that adds a specific prefix to the relative path. * * If prefix = "nested-path/", paths like "somefile.txt" will be transformed to "nested-path/somefile.txt". * * @param prefix prefix to add to the relative path, slash at the end will be added automatically if missed */ declare function addPrefixToRelative(prefix: string): (value: T) => T; //#endregion export { addPrefixToRelative, mapRemoteToAbsolute }; //# sourceMappingURL=content_conversion.d.ts.map