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