import { EnvironmentConfig } from './environment'; export type ConnectConfig = { environment: EnvironmentConfig; }; /** * Injects the sdk-web-executor so the sdk-web-elements can call the web-elements */ export declare const connect: ({ environment }: ConnectConfig) => Promise | null; export declare const isConnected: () => boolean; /** * Removes the injected sdk-web-executor */ export declare const disconnect: () => void;