import { Label, Section, Task, User, Attachment, Duration, Deadline, RawComment, PersonalProject, WorkspaceProject, Reminder, Folder, Goal, App, AppWithUserCount, AppSecrets, AppVerificationToken, AppTestToken, AppDistributionToken, AppWebhook, AppInstallation, UserAuthorization, UiExtension } from '../types/index.js'; import type { Collaborator, CollaboratorState } from '../types/sync/resources/collaborators.js'; import type { Note } from '../types/sync/resources/notes.js'; export declare const DEFAULT_TASK_ID = "1234"; export declare const DEFAULT_TASK_CONTENT = "This is a task"; export declare const DEFAULT_TASK_DESCRIPTION = "A description"; export declare const DEFAULT_TASK_PRIORITY = 1; export declare const DEFAULT_ORDER = 3; export declare const DEFAULT_PROJECT_ID = "123"; export declare const DEFAULT_PROJECT_NAME = "This is a project"; export declare const DEFAULT_PROJECT_VIEW_STYLE = "list"; export declare const DEFAULT_AUTH_TOKEN = "AToken"; export declare const DEFAULT_REQUEST_ID = "ARequestID"; export declare const INVALID_ENTITY_ID = 1234; export declare const DEFAULT_DUE_DATE: { isRecurring: boolean; string: string; date: string; lang: string; timezone: null; }; export declare const DEFAULT_DURATION: Duration; export declare const DEFAULT_DEADLINE: Deadline; export declare const DEFAULT_TASK: Task; export declare const INVALID_TASK: { due: string; isUncompletable: boolean; url: string; id: string; userId: string; projectId: string; sectionId: string | null; parentId: string | null; addedByUid: string | null; assignedByUid: string | null; responsibleUid: string | null; labels: string[]; deadline: { date: string; lang: string; } | null; duration: { amount: number; unit: "minute" | "day"; } | null; checked: boolean; isDeleted: boolean; addedAt: Date | null; completedAt: Date | null; updatedAt: Date | null; priority: number; childOrder: number; content: string; description: string; dayOrder: number; isCollapsed: boolean; }; export declare const TASK_WITH_OPTIONALS_AS_NULL: Task; export declare const DEFAULT_PROJECT: PersonalProject; export declare const INVALID_PROJECT: { name: number; url: string; id: string; canAssignTasks: boolean; childOrder: number; color: string; createdAt: Date | null; isArchived: boolean; isDeleted: boolean; isFavorite: boolean; isFrozen: boolean; updatedAt: Date | null; viewStyle: string; defaultOrder: number; description: string; isCollapsed: boolean; isShared: boolean; parentId: string | null; inboxProject: boolean; }; export declare const PROJECT_WITH_OPTIONALS_AS_NULL: PersonalProject; export declare const DEFAULT_WORKSPACE_PROJECT: WorkspaceProject; export declare const DEFAULT_SECTION: Section; export declare const INVALID_SECTION: { projectId: undefined; url: string; id: string; userId: string; addedAt: Date; updatedAt: Date; archivedAt: Date | null; name: string; description: string | null; sectionOrder: number; isArchived: boolean; isDeleted: boolean; isCollapsed: boolean; }; export declare const DEFAULT_LABEL: Label; export declare const INVALID_LABEL: { isFavorite: string; id: string; order: number | null; name: string; color: string; }; export declare const DEFAULT_USER: User; export declare const INVALID_USER: { email: undefined; id: string; name: string; }; export declare const DEFAULT_ATTACHMENT: Attachment; export declare const INVALID_ATTACHMENT: { uploadState: string; resourceType: string; fileName?: string | null | undefined; fileSize?: number | null | undefined; fileType?: string | null | undefined; fileUrl?: string | null | undefined; fileDuration?: number | null | undefined; image?: string | null | undefined; imageWidth?: number | null | undefined; imageHeight?: number | null | undefined; url?: string | null | undefined; title?: string | null | undefined; }; export declare const DEFAULT_RAW_COMMENT: RawComment; export declare const DEFAULT_COMMENT: { taskId: string | undefined; itemId: undefined; id: string; content: string; postedAt: Date; fileAttachment: { resourceType: string; fileName?: string | null | undefined; fileSize?: number | null | undefined; fileType?: string | null | undefined; fileUrl?: string | null | undefined; fileDuration?: number | null | undefined; uploadState?: "completed" | "pending" | null | undefined; image?: string | null | undefined; imageWidth?: number | null | undefined; imageHeight?: number | null | undefined; url?: string | null | undefined; title?: string | null | undefined; } | null; postedUid: string; uidsToNotify: string[] | null; reactions: Record | null; isDeleted: boolean; projectId?: string | undefined; }; export declare const DEFAULT_REMINDER_ID = "6XGgmFQrx44wfGHr"; export declare const DEFAULT_RELATIVE_REMINDER: Reminder; export declare const DEFAULT_ABSOLUTE_REMINDER: Reminder; export declare const DEFAULT_LOCATION_REMINDER: Reminder; export declare const INVALID_COMMENT: { isDeleted: string; id: string; content: string; postedAt: Date; fileAttachment: { resourceType: string; fileName?: string | null | undefined; fileSize?: number | null | undefined; fileType?: string | null | undefined; fileUrl?: string | null | undefined; fileDuration?: number | null | undefined; uploadState?: "completed" | "pending" | null | undefined; image?: string | null | undefined; imageWidth?: number | null | undefined; imageHeight?: number | null | undefined; url?: string | null | undefined; title?: string | null | undefined; } | null; postedUid: string; uidsToNotify: string[] | null; reactions: Record | null; itemId?: string | undefined; projectId?: string | undefined; }; export declare const RAW_COMMENT_WITH_OPTIONALS_AS_NULL_TASK: RawComment; export declare const COMMENT_WITH_OPTIONALS_AS_NULL_TASK: { taskId: string | undefined; itemId: undefined; id: string; content: string; postedAt: Date; fileAttachment: { resourceType: string; fileName?: string | null | undefined; fileSize?: number | null | undefined; fileType?: string | null | undefined; fileUrl?: string | null | undefined; fileDuration?: number | null | undefined; uploadState?: "completed" | "pending" | null | undefined; image?: string | null | undefined; imageWidth?: number | null | undefined; imageHeight?: number | null | undefined; url?: string | null | undefined; title?: string | null | undefined; } | null; postedUid: string; uidsToNotify: string[] | null; reactions: Record | null; isDeleted: boolean; projectId?: string | undefined; }; export declare const RAW_COMMENT_WITH_ATTACHMENT_WITH_OPTIONALS_AS_NULL: RawComment; export declare const COMMENT_WITH_ATTACHMENT_WITH_OPTIONALS_AS_NULL: { taskId: string | undefined; itemId: undefined; id: string; content: string; postedAt: Date; fileAttachment: { resourceType: string; fileName?: string | null | undefined; fileSize?: number | null | undefined; fileType?: string | null | undefined; fileUrl?: string | null | undefined; fileDuration?: number | null | undefined; uploadState?: "completed" | "pending" | null | undefined; image?: string | null | undefined; imageWidth?: number | null | undefined; imageHeight?: number | null | undefined; url?: string | null | undefined; title?: string | null | undefined; } | null; postedUid: string; uidsToNotify: string[] | null; reactions: Record | null; isDeleted: boolean; projectId?: string | undefined; }; export declare const RAW_COMMENT_WITH_OPTIONALS_AS_NULL_PROJECT: RawComment; export declare const COMMENT_WITH_OPTIONALS_AS_NULL_PROJECT: { taskId: undefined; id: string; content: string; postedAt: Date; fileAttachment: { resourceType: string; fileName?: string | null | undefined; fileSize?: number | null | undefined; fileType?: string | null | undefined; fileUrl?: string | null | undefined; fileDuration?: number | null | undefined; uploadState?: "completed" | "pending" | null | undefined; image?: string | null | undefined; imageWidth?: number | null | undefined; imageHeight?: number | null | undefined; url?: string | null | undefined; title?: string | null | undefined; } | null; postedUid: string; uidsToNotify: string[] | null; reactions: Record | null; isDeleted: boolean; itemId?: string | undefined; projectId?: string | undefined; }; export declare const DEFAULT_FOLDER: Folder; export declare const DEFAULT_COLLABORATOR: Collaborator; export declare const DEFAULT_COLLABORATOR_STATE: CollaboratorState; export declare const DEFAULT_GOAL_ID = "550e8400-e29b-41d4-a716-446655440000"; export declare const DEFAULT_GOAL: Goal; export declare const DEFAULT_GOAL_NO_PROGRESS: Goal; export declare const DEFAULT_APP_ID = "42"; export declare const DEFAULT_INSTALLATION_ID = "1001"; export declare const DEFAULT_UI_EXTENSION_ID = "2002"; export declare const DEFAULT_DISTRIBUTION_TOKEN = "dist-token-abc"; export declare const DEFAULT_ACCESS_TOKEN_ID = "3003"; export declare const DEFAULT_APP: App; export declare const DEFAULT_APP_WITH_USER_COUNT: AppWithUserCount; export declare const DEFAULT_APP_SECRETS: AppSecrets; export declare const DEFAULT_APP_VERIFICATION_TOKEN: AppVerificationToken; export declare const DEFAULT_APP_TEST_TOKEN: AppTestToken; export declare const DEFAULT_APP_DISTRIBUTION_TOKEN: AppDistributionToken; export declare const DEFAULT_APP_WEBHOOK: AppWebhook; export declare const DEFAULT_APP_INSTALLATION: AppInstallation; export declare const DEFAULT_USER_AUTHORIZATION: UserAuthorization; export declare const DEFAULT_UI_EXTENSION: UiExtension; export declare const DEFAULT_NOTE: Note;