/** * Formats a Date object to YYYY-MM-DD string format. * * @internal * @param date The Date object to format. * @returns The formatted date string in YYYY-MM-DD format. */ export declare function formatDateToYYYYMMDD(date: Date): string; /** * Generate the URL for a given task. * * @param taskId The ID of the task. * @param content The content of the task. * @returns The URL string for the task view. */ export declare function getTaskUrl(taskId: string, content?: string): string; /** * Generate the URL for a given project. * * @param projectId The ID of the project. * @param name The name of the project. * @returns The URL string for the project view. */ export declare function getProjectUrl(projectId: string, name?: string): string; /** * Generate the URL for a given section. * * @param sectionId The ID of the section. * @param name The name of the section. * @returns The URL string for the section view. */ export declare function getSectionUrl(sectionId: string, name?: string): string;