/** * Converts a zip file name to a nice, human-readable name. * * @example `hello-dolly.zip` -> `Hello dolly` * * @param zipName A zip filename. * @returns A nice, human-readable name. */ export declare function zipNameToHumanName(zipName: string): string;