import { ButtonProps } from '../Button'; export type CalendarNextProps = ButtonProps; /** * A button that displays the next 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 next month and allows the user to select a different month. */ export declare const CalendarNext: import('react').ForwardRefExoticComponent>;