import type Bundle from "./Bundle.js"; /** * Converts a date to W3C / UTC string * @param date * @returns */ export declare function processDate(date: Date): string | undefined; /** * Removes hidden files from a list (those starting with dot) * * @params from - list of file names * @return */ export declare function removeHidden(from: Array): Array; /** * Clones recursively an object and all of its properties * * @param object * @returns */ export declare function cloneRecursive(object: T): Record; export declare function assertUnfrozen(instance: InstanceType): asserts instance is Bundle & { isFrozen: false; };