import { ActionBehavior } from '../actionbehavior'; /** * Navigates the user to the provided URL. * * **Important Note**: Safari on iOS will not open URLs in new tabs for pointer events except `onPointerUp`. * * @zbehavior * @zicon open_in_new * @zgroup Actions */ export declare class LaunchURL extends ActionBehavior { /** * The URL to open * @zprop */ url: string; /** * If true, the URL will be opened in a new tab (using target '_blank') * @zprop * @zdefault true */ openInNew: boolean; /** @zprop */ perform(): void; }