import { AppIdentifier, Theme } from "../../types"; export declare const openModal: (appIdentifier: AppIdentifier) => void; export declare const closeModal: (appIdentifier: AppIdentifier) => void; export declare const appLoaded: (appIdentifier: AppIdentifier) => void; export declare const appPendingApproval: (appIdentifier: AppIdentifier) => void; export declare const appCompleted: (appIdentifier: AppIdentifier) => void; export declare const appFailed: (appIdentifier: AppIdentifier) => void; /** * setUseNewSdk dispatches into the `new-sdk-flags` slice directly (not * through `dispatchActionBasedOnAppIdentifier`), because that slice is keyed * by appIdentifier internally rather than having one reducer per app. */ export declare const setUseNewSdk: (appIdentifier: AppIdentifier, useNewSdk: boolean) => void; /** * setTheme dispatches into the global `theme` slice. Forwarded to new * @zerohash-sdk/*-react components via AppContainer; legacy iframe and * Connect Auth paths ignore it. */ export declare const setTheme: (theme: Theme) => void;