import { FC, CSSProperties } from 'react';
interface XTitleProps {
    title?: string;
    titleEn?: string;
    moreOnClick?: () => void;
    moreAnimateOnClick?: () => void;
    packUpOnClick?: () => void;
    rightSlot?: React.ReactNode;
    logoSrc?: string;
    bgImage?: string;
    className?: string;
    style?: CSSProperties;
    noPrefix?: boolean;
}
/** 大屏标题组件 */
declare const XTitle: FC<XTitleProps>;
export default XTitle;
