import type { DEVONthinkCommon } from './shared'; /** * CreateGroup command payload definition. */ type CreateGroup = Pick; /** * Create a group in DEVONthink. * * @param payload CreateGroup command payload. * @returns DEVONthink createGroup URL. * @example * createGroup({ title: 'Inbox', destination: 'F8E2A5A6-0000-0000-0000-000000000000' }) * // => 'x-devonthink://createGroup?title=Inbox&destination=F8E2A5A6-0000-0000-0000-000000000000' * @link https://download.devontechnologies.com/download/devonthink/3.8.2/DEVONthink.help/Contents/Resources/pgs/automation-urlcommands.html */ export declare function createGroup(payload?: CreateGroup): string; export {};