import { Effects } from '../types'; export type SetExportedUrls = (opts: { effects: Effects; }) => Promise; export type UpdateExportedUrls = (effects: Effects) => Promise; export type SetupExportedUrls = (fn: SetExportedUrls) => UpdateExportedUrls; export declare const setupExportedUrls: SetupExportedUrls;