import { ButtonProps, ButtonStylesProps } from '../Button/Button'; export declare type DatepickerCalendarHeaderActionProps = ButtonProps & { /** What direction the action button should be pointing */ direction?: 'previous' | 'next'; }; export declare type DatepickerCalendarHeaderActionStylesProps = ButtonStylesProps; export declare const datepickerCalendarHeaderActionClassName = "ui-datepicker__calendarheaderaction"; /** * A DatepickerCalendarHeaderAction is used to display action button for DatepickerCalendarHeader. * This component is currently UNSTABLE! */ export declare const DatepickerCalendarHeaderAction: import("@fluentui/react-bindings").ComponentWithAs<"button", DatepickerCalendarHeaderActionProps>;