import React from "react"; import { TimeProps } from "../Time"; export interface CalendarLabelProps extends Omit, "color"> { size?: "small" | "medium" | "large"; date?: TimeProps["date"]; children?: never; } export declare const CalendarLabel: ({ date, size, ...props }: CalendarLabelProps) => import("@emotion/react/jsx-runtime").JSX.Element;