import { InitAppType } from './initApp.types'; /** * Reset the initialization state. Used primarily for testing. * @internal */ export declare function resetInitAppState(): void; /** * Initializes the dApp with the given configuration. * @param props - The configuration for the dApp initialization. * * @example * ```ts initApp({ nativeAuth: true, environment: EnvironmentsEnum.devnet }); * ``` * */ export declare function initApp({ storage, dAppConfig, customProviders }: InitAppType): Promise;