import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; import type { HandleEvent, VmIcon } from '../../_interface'; export declare const Props: { /** 返回图标 */ readonly icon: BasicType, null>; /** 返回图标大小 */ readonly iconSize: BasicType, string | number | null>; /** 返回文本 */ readonly backText: BasicType, string | null>; /** 标题文本 */ readonly title: BasicType, string | null>; /** 标题是否粗体 */ readonly titleBold: BasicType; /** 标题颜色 */ readonly titleColor: BasicType, string | null>; /**标题是否居中 */ readonly titleCenter: BasicType; /** 副标题文本 */ readonly subtitle: BasicType, string | null>; /** 点击左侧区域触发 */ readonly onBack: BasicType, null>; }; /** page-header 组件 props 类型 */ export type PageHeaderProps = ExtractPropTypes;