import type { DEVONthinkCommon } from './shared'; /** * CreateHTML command payload definition. */ type CreateHTML = DEVONthinkCommon & { /** * The HTML content for the HTML document. */ source?: string; }; /** * Create a new HTML document in DEVONthink. * * @param payload CreateHTML command payload. * @returns DEVONthink createHTML URL. * @example * createHTML({ title: 'Page', source: '

Hello

' }) * // => 'x-devonthink://createHTML?title=Page&source=%3Ch1%3EHello%3C%2Fh1%3E' * @link https://download.devontechnologies.com/download/devonthink/3.8.2/DEVONthink.help/Contents/Resources/pgs/automation-urlcommands.html */ export declare function createHTML(payload?: CreateHTML): string; export {};