export type UseOpenUrlParams = { fallback?: (url: string) => void; }; /** * Opens a new url, if in a frame context, using the openUrl sdk action, otherwise opens via the fallback function. * * @param options - The options for the useOpenUrl hook. * @param options.fallback - The fallback function to use if the context is not available. Defaults to opening in a new tab. */ export declare function useOpenUrl({ fallback }?: UseOpenUrlParams): (url: string) => void; //# sourceMappingURL=useOpenUrl.d.ts.map