import type { Plugin } from '@budarin/pluggable-serviceworker'; export interface OpfsCacheOnFetchOptions { order?: number; include?: string[]; exclude?: string[]; enableLogging?: boolean; } export declare function opfsCacheOnFetch(options?: OpfsCacheOnFetchOptions): Plugin;