import { FC } from 'react'; import { CalendarBaseControlIconButtonProps } from '../../../CalendarBase'; export type CalendarPrevButtonProps = CalendarBaseControlIconButtonProps; /** * `CalendarPrevButton` is the calendar-integrated "previous" navigation * control, responsible for moving the visible month backward in the * day-picker view. It wraps `CalendarBaseControlIconButton` and applies calendar * state, range constraints, and picker-mode awareness. */ export declare const CalendarPrevButton: FC;