import { Observable } from 'rxjs'; import { WebViewBridge } from './webViewSdkTypes'; export * from '@frontapp/ui-bridge'; declare const Front: WebViewBridge; export declare const buildCancelTokenSource: () => import("@frontapp/ui-bridge").ApplicationCancelTokenSource, contextUpdates: Observable, isCancelError: (error: any) => boolean; /** * @deprecated use delegateNewWindowsToFront instead to delegate all new window opens to Front. * * Delegate clicks on anchor elements targetting a new window to Front. */ export declare function delegateAnchorClicksToFront(): void; /** * Delegate opening new window contexts to Front. * Helper function to make all new windows open in the default browser instead of a popup. */ export declare function delegateNewWindowsToFront(): void; export default Front;