/** * Microsoft Graph OneNote client URL payload definition. */ export interface OneNoteClientUrlPayload { /** * OneNote client URL returned by Microsoft Graph at `links.oneNoteClientUrl.href`. * * @example 'onenote:https://...' */ href: string; } export declare function oneNoteClientUrl(href: string): string; export declare function oneNoteAndroidClientUrl(href: string): string;