import type { OneNoteClientUrlPayload } from './shared'; /** * Open a known OneNote client URL returned by Microsoft Graph. * * @param payload OneNote client URL payload. * @returns OneNote client URL. * @example * openClientUrl({ href: 'onenote:https://...' }) * // => 'onenote:https://...' * * @link https://learn.microsoft.com/en-us/graph/open-onenote-client */ export declare function openClientUrl(payload: OneNoteClientUrlPayload): string;