import React from "react"; import dayjs from "dayjs"; import { PartialColorProps } from "../theme"; export interface CalendarDayProps extends Omit, "color">, PartialColorProps { date: dayjs.ConfigType; hasChildren?: boolean; disableAnimation?: boolean; disabled?: boolean; variant?: "filled" | "outlined"; event?: { start?: dayjs.ConfigType; end?: dayjs.ConfigType; type?: string; }; children?: React.ReactNode; /*** * 日付がクリックされた場合に、その日付とイベントを返す。 */ onClickDay?: (value: Date, event: React.MouseEvent) => void; } export declare const CalendarDay: ({ date, children, color, hasChildren, variant, disableAnimation, disabled: disabledProps, event, onClickDay, ...rest }: CalendarDayProps) => import("@emotion/react/jsx-runtime").JSX.Element;