import { CryptKeeperInjectedProvider } from "./CryptKeeperInjectedProvider"; import { ICryptKeeperInjectedProvider } from "./interface"; /** * Extends the global Window interface to include CryptKeeper-related properties. */ declare global { /** * Represents the CryptKeeperInjectedProvider instance. */ interface Window { /** * The CryptKeeperInjectedProvider instance. */ cryptkeeper: CryptKeeperInjectedProvider; /** * Indicates whether CryptKeeper is injected. */ isCryptkeeperInjected?: boolean; } } /** * Initializes the CryptKeeper provider within the CryptKeeper extension. * This function is meant to be used exclusively within the CryptKeeper extension. * @returns {CryptKeeperInjectedProvider | undefined} The initialized CryptKeeperInjectedProvider instance or undefined. */ export declare function initializeCryptKeeperProvider(connectedOrigin?: string): ICryptKeeperInjectedProvider; /** * Initializes the CryptKeeper provider within the connected application. * This function is meant to be used exclusively within the CryptKeeper extension. * @returns {CryptKeeperInjectedProvider | undefined} A connected CryptKeeperInjectedProvider instance, or undefined if the CryptKeeper extension is not installed. */ export declare function initializeCryptKeeper(): ICryptKeeperInjectedProvider | undefined; //# sourceMappingURL=initializeInjectedProvider.d.ts.map