import React from 'react'; import type { Schedule } from './types'; interface WeeklyViewProps { startOfWeek: 'sunday' | 'monday'; schedules: Schedule[]; config?: any; } export declare const WeeklyView: React.FC; export {};