import { ButtonProps } from '../Button'; export type CalendarPrevProps = 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 CalendarPrev: import('react').ForwardRefExoticComponent>;