import { Config } from '@sveltejs/kit';

interface WithMicrofrontendsOptions {
    /**
     * Explicitly set the name of the application instead of using the name from the package.json.
     */
    appName?: string;
    configPath?: string;
}
declare function withMicrofrontends(config: Config, opts?: WithMicrofrontendsOptions): Config;

export { withMicrofrontends };
