export declare const useAdminTodos: () => { fetchTodos: () => Promise; getActiveTodos: () => Promise; getTodosByDateRange: (startDate: Date, endDate: Date) => Promise; createTodo: (todo: any) => Promise; updateTodo: (id: string, updates: any) => Promise; toggleTodo: (id: string) => Promise; deleteTodo: (id: string) => Promise; isOverdue: (todo: any) => boolean; };