type tpickerHeaderProps = {
    /**
     * arrowicon
     */
    arrowIcon?: {
        arrowIconLeft: React.ReactNode;
        arrowIconRight: React.ReactNode;
    };
    /**
     * year label class
     */
    yearLabel?: string;
    /**
     * month label class
     */
    monthLabel?: string;
    /**
     * lock locale
     */
    lockLocale?: boolean;
};
declare const PickerHeader: ({ monthLabel, yearLabel, arrowIcon, lockLocale, }: tpickerHeaderProps) => import("react").JSX.Element;
export default PickerHeader;
