/** * Create note definition. */ type CreateNote = { /** * Note title. */ title?: string; /** * Note content. */ content?: string; /** * Note tags. */ tags?: string; }; /** * Create note in FSNotes. * * @param payload Create note definition. * @returns FSNotes create note URL. * @example * createNote({ * title: 'hello', * content: 'hello world', * }) * // => 'nv://make/?title=hello&content=hello%20world' * @link https://github.com/glushchenko/fsnotes/blob/master/FSNotes/AppDelegate%2BURLRoutes.swift */ export declare function createNote(payload?: CreateNote): string; export {};