export declare const TICKTICK_URLS: { readonly BASE_URL: "https://ticktick.com"; readonly API_BASE_URL: "https://api.ticktick.com"; readonly OAUTH_AUTHORIZE: "https://ticktick.com/oauth/authorize"; readonly OAUTH_TOKEN: "https://ticktick.com/oauth/token"; }; export declare const ENDPOINTS: { readonly TASKS: "/tasks"; readonly TASKS_BATCH: "/batch/task"; readonly HABITS: "/habits"; readonly HABITS_BATCH: "/habits/batch"; readonly HABIT_CHECKINS_BATCH: "/habitCheckins/batch"; readonly HABIT_SECTIONS: "/habitSections"; readonly PROJECTS: "/projects"; readonly PROJECTS_BATCH: "/batch/project"; readonly PROJECT_GROUPS: "/projectGroups"; readonly PROJECT_GROUPS_BATCH: "/batch/projectGroup"; readonly TAGS: "/tags"; readonly TAGS_BATCH: "/batch/tag"; readonly TAG: "/tag"; readonly TAG_RENAME: "/tag/rename"; readonly TAG_MERGE: "/tag/merge"; readonly PROJECT_ALL_CLOSED: "/project/all/closed"; readonly PROJECT_ALL_TRASH_PAGINATION: "/project/all/trash/pagination"; readonly PROJECT_ALL_COMPLETED: "/project/all/completed"; readonly SEARCH_ALL: "/search/all"; readonly OPEN_V1_PROJECT: "/open/v1/project"; readonly OPEN_V1_PROJECT_BY_ID: (projectId: string) => string; readonly OPEN_V1_PROJECT_DATA: (projectId: string) => string; readonly OPEN_V1_TASK: "/open/v1/task"; readonly OPEN_V1_TASK_UPDATE: (taskId: string) => string; readonly OPEN_V1_TASK_ALL: (taskId: string) => string; readonly OPEN_V1_TASK_BY_PROJECT: (projectId: string, taskId: string) => string; readonly OPEN_V1_TASK_COMPLETE: (projectId: string, taskId: string) => string; readonly FOCUS_HEATMAP: (start: string, end: string) => string; readonly FOCUS_DISTRIBUTION: (start: string, end: string) => string; readonly SYNC: "/batch/check/0"; readonly USER_PROFILE: "/user/profile"; readonly USER_STATUS: "/user/status"; readonly USER_PREFERENCES_SETTINGS: "/user/preferences/settings"; readonly PROJECT_USERS: (projectId: string) => string; readonly TASK_ASSIGN: "/task/assign"; readonly TASK_PROJECT: "/batch/taskProject"; readonly TASK_PARENT: "/batch/taskParent"; }; export declare const DEFAULT_HABIT_COLOR = "#97E38B"; export declare const DEFAULT_HABIT_ICON = "habit_daily_check_in"; export declare const DEFAULT_HABIT_TYPE = "Boolean"; export declare const DEFAULT_HABIT_UNIT = "Count"; export declare const DEFAULT_HABIT_GOAL = 1; export declare const DEFAULT_HABIT_STEP = 0; export declare const DEFAULT_HABIT_TARGET_DAYS = 0; export declare const DEFAULT_HABIT_ENCOURAGEMENT = ""; export declare const DEFAULT_HABIT_REPEAT_RULE = "RRULE:FREQ=WEEKLY;BYDAY=SU,MO,TU,WE,TH,FR,SA"; export declare const TASK_STATUS: { readonly NORMAL: 0; readonly COMPLETED: 2; readonly DELETED: 1; }; export declare const TASK_PRIORITY: { readonly NONE: 0; readonly LOW: 1; readonly MEDIUM: 3; readonly HIGH: 5; }; export declare const HABIT_STATUS: { readonly ACTIVE: 0; readonly ARCHIVED: 2; }; export declare const CHECKIN_STATUS: { readonly COMPLETED: 2; }; export declare const TimeZones: { name: string; value: string; }[];