export function registerMirroring(options?: {
    serviceWorkerController: import("../service-worker-controller/service-worker-controller.js").ServiceWorkerController;
    fallbackPages: {
        pages: Array<string | {
            url: string;
            revision: string;
        }>;
    };
}): void;
export function defineMirroringConfiguration(configuration: any): {
    urls: any[];
    excludeByPath: any;
    timeout: any;
    strategy: any;
    setRepressHeaders: any;
};
