/** * Open web URL payload definition. */ type OpenWeb = { /** * The web URL to open in Editorial's in-app browser. */ url: string; }; /** * Open a web page in Editorial's in-app browser using editorial-http:// or editorial-https:// scheme. * * @param payload Open web URL payload. * @returns Editorial web browser URL. * @example * openWeb({ url: 'http://apple.com' }) * // => 'editorial-http://apple.com' * @example * openWeb({ url: 'https://google.com' }) * // => 'editorial-https://google.com' * @link https://omz-software.com/editorial/docs/ios/urlscheme.html */ export declare function openWeb(payload: OpenWeb): string; export {};