import { LinkOpenOptions, LinkOpenResult } from '@napplet/core'; /** * Napplet NAP link sdk entrypoint. * * @module */ /** * @napplet/nap/link -- SDK helpers wrapping window.napplet.link. */ /** * Request that the shell open an external URL for the user. * * @param url Absolute URL to open. * @param options Optional prompt/display hints. * @returns Promise resolving to the shell's open/deny status. */ declare function linkOpen(url: string, options?: LinkOpenOptions): Promise; export { linkOpen };