export type TimIdPayload = { /** * Task or group ID copied from Tim. */ id: string; }; export type TimNotesPayload = { /** * Optional record notes. */ notes?: string; }; export type TimCreatePayload = { /** * Optional task or group title. */ title?: string; /** * Optional task or group notes. */ notes?: string; }; export type TimCreateType = 'task' | 'group'; export declare function timIdUrl(id: string, params?: Record): string; export declare function timCreateUrl(type: TimCreateType, payload?: TimCreatePayload): string;