import { IconButtonProps } from '../../../IconButton'; import { FC } from 'react'; export type CalendarBaseControlIconButtonProps = IconButtonProps; /** * `CalendarBaseControlIconButton` is the foundational for navigation * control used by calendar components such as `CalendarPrevButton` or `CalendarNextButton`. * It wraps the generic `IconButton` while automatically applying the * calendar’s active styling configuration. */ export declare const CalendarBaseControlIconButton: FC;