/// <reference types="react" />
interface ITitleProps {
    text: string | number;
    unit?: string;
    onClick?: () => void;
}
export declare const Title: React.FC<ITitleProps>;
interface IPanelHeaderProps {
    showSuper?: boolean;
    titleNode?: React.ReactNode;
    combinedLeft?: boolean;
    combinedRight?: boolean;
    onPrev: () => void;
    onNext: () => void;
    onSuperPrev?: () => void;
    onSuperNext?: () => void;
}
declare const PanelHeader: React.FC<IPanelHeaderProps>;
export default PanelHeader;
