import { z } from 'zod'; export declare const ticktickResponseErrorSchema: z.ZodObject<{ errorId: z.ZodString; errorCode: z.ZodEnum<["user_not_sign_on", "username_password_not_match", "incorrect_password_too_many_times"]>; errorMessage: z.ZodString; data: z.ZodNullable; }, "strip", z.ZodTypeAny, { errorId: string; errorCode: "user_not_sign_on" | "username_password_not_match" | "incorrect_password_too_many_times"; errorMessage: string; data?: any; }, { errorId: string; errorCode: "user_not_sign_on" | "username_password_not_match" | "incorrect_password_too_many_times"; errorMessage: string; data?: any; }>; export declare class TicktickError extends Error { constructor(message: string); }