import type { AssetPipe } from '../core/pipes/AssetPipe.js'; /** * Cache buster asset pipe. This pipe will add a hash to the end of the filename * the hash is calculated from the contents of the file. * * worth noting that when combined with the texture packer plugin, an additional * plugin is required to update the texture packer json files to point to the new * file names (`texturePackerCacheBuster.ts`) * * @returns the cache buster asset pipe */ export declare function cacheBuster(): AssetPipe;