import { CalendarMonthsProps, CalendarProps, CalendarWeekProps, CalendarYearsProps } from './types'; export declare function styleCalendar(props: CalendarProps): { main: string[]; toolbar: string[]; toolbarInner: string[]; inner: string[]; }; export declare function styleCalendarMonths(props: CalendarMonthsProps): string[]; export declare function styleCalendarYears(props: CalendarYearsProps): string[]; export declare function styleCalendarWeek(props: CalendarWeekProps): string[]; export declare function styleCalendarDays(props: CalendarWeekProps): { main: string[]; out: string; in: string; };