/** * Calculate cron schedule for standup WIP extraction * Subtracts 10 minutes from meeting time to extract before standup */ export declare function calculateStandupCronSchedule(meetingTime: string, daysMask: number): string; /** * Get existing crontab content and remove BragDoc entries */ export declare function getCleanedCrontab(): Promise; /** * Check if BragDoc entries exist in crontab */ export declare function checkExistingCrontab(): Promise; /** * Convert cron day number to Windows day name */ export declare function convertCronDayToWindows(cronDay: string): string; /** * Convert cron schedule to Windows Task Scheduler parameters * Consolidated version supporting both hourly and weekly schedules */ export declare function convertCronToWindowsSchedule(cronSchedule: string): { schedule: string; warning?: string; }; //# sourceMappingURL=scheduling.d.ts.map