/** * Handle links from within a message. This method will parse and handle valid Braze Click Actions (brazeActions://). * If an `openUriCallback` intitialization option was provided, it will also redirect valid links using that callback function. * @param url - A valid URL, or a valid brazeActions URL with scheme brazeActions://v{versionInt}/{base64string} * @param openLinkInNewTab - Whether the URL should be opened in a new tab. Defaults to false * @param event - The event that triggered the redirect */ export declare function handleBrazeAction(url: string, openLinkInNewTab: boolean | undefined, event: Event | undefined): Promise;