import React from "react"; export interface IPageTitleProps { /** 页面标题 */ title: string; /** 自定义样式 */ customStyle?: {}; /** 返回按钮方法 */ onBack: () => void; } declare const PageTitle: React.FC; export default PageTitle;