import { ComponentPropsWithoutRef } from "react";
import { CommonProps } from "../types";
export type MonthArrowBackProps = CommonProps & {
    month?: number;
    year?: number;
    innerProps?: Omit<ComponentPropsWithoutRef<"button">, "children" | "onClick"> & {
        onClick: () => void;
    };
};
export type MonthArrowDirectionType = "left" | "right" | "up" | "down";
export declare const MonthArrowBack: (props: MonthArrowBackProps) => JSX.Element;
