import { FC } from 'react'; import { ButtonProps } from '../../../Button'; export type CalendarBasePickerButtonProps = ButtonProps; /** * `CalendarBasePickerButton` is the foundational trigger component used for * toggling secondary calendar views such as the month picker and year * picker. It wraps the generic `Button` component while binding its styling * to the calendar’s configuration through `useBaseCalendarContext()`. */ export declare const CalendarBasePickerButton: FC;