import { ReactNode } from 'react';
import { Dayjs } from 'dayjs';
import { ModeType, IconsType } from '../interface';
export interface HeaderProps {
    prefixCls?: string;
    title?: ReactNode;
    onPrev?: () => void;
    onNext?: () => void;
    onSuperPrev?: () => void;
    onSuperNext?: () => void;
    mode?: ModeType;
    value?: Dayjs;
    onChangePanel?: (mode?: ModeType) => void;
    icons?: IconsType;
    rtl?: boolean;
}
declare function Header(props: HeaderProps): JSX.Element;
export default Header;
