import { ButtonProps } from '../../Button'; export type CalendarPrevButtonProps = ButtonProps; /** * A button that displays the previous month and allows the user to select a different month. * * @param props.onClick - The function to call when the button is clicked. * @param props.className - The class name to apply to the button. * @param props - The rest of the props for the Button component. * @returns A button that displays the previous month and allows the user to select a different month. */ export declare const CalendarPrevButton: import('react').ForwardRefExoticComponent>;