import type { SourceItem } from '../SourceItem.js'; /** * This method will transform a source item to a path that can be used by filesystems * @param source - The source item to transform * @returns The transformed path and the URL */ export declare function toIumSourceToPath(source: SourceItem): string; /** * This method will transform a source item to a path that had been serialised for filesystems * @param source - The source item to transform * @returns A tuple containing the URL, transformed path, and the legacy path */ export declare function fromIumSourceToPath(source: SourceItem): [url: URL, zipPath: string, legacyZipPath: string]; /** * This method will transform a source item to a path that is safe for filesystems * @param source - The source item to transform * @returns the path safe for filesystems */ export declare function sourceToZipPath(source: SourceItem): string; //# sourceMappingURL=source_zip.d.ts.map