import { AppStartupSettings } from 'ng-dynamic-mf';
import type { loadRemoteModule as LRM } from '@angular-architects/native-federation-runtime';
type AppStartupSettingsNf = AppStartupSettings & ({
    type: 'host';
    loadRemoteModule: typeof LRM;
} | {
    type: 'remote';
});
export declare function initializeApp(settings: AppStartupSettingsNf): Promise<void>;
export {};
