import type { ZephyrEngine } from 'zephyr-agent'; interface RemotesConfig { /** Container locations from which modules should be resolved and loaded at runtime. */ external: string | string[]; /** The name of the share scope shared with this remote. */ shareScope?: string; } interface RemotesObject { [index: string]: string | RemotesConfig | string[]; } interface KnownMfConfig { config?: { name: string; library?: { type?: string; }; remotes?: (string | RemotesObject)[] | RemotesObject; }; } export declare function verify_mf_fastly_config(mf_configs: KnownMfConfig[] | undefined, zephyr_engine: ZephyrEngine): Promise; export {};