import { Component, JSXElement } from "solid-js"; import { CalendarDaysProps } from "../CalendarDays"; import { RnClassName, Locale, WeekDaysType } from "../../interface/general"; export interface CalendarAreaProps extends CalendarDaysProps, Pick { locale?: Locale; weekDaysJSX?: JSXElement; weekDaysType?: WeekDaysType; } export declare const CalendarArea: Component;