/** * Task Relations Extensions * Handles task relation operations for Vikunja */ import { z } from 'zod'; export declare const relationSchema: { otherTaskId: z.ZodOptional; relationKind: z.ZodOptional>; }; export declare const relationSubcommands: string[]; interface RelationArgs { subcommand: string; id?: number | undefined; otherTaskId?: number | undefined; relationKind?: string | undefined; } export declare function handleRelationSubcommands(args: RelationArgs): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; export {}; //# sourceMappingURL=tasks-relations.d.ts.map