// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: drafish <https://github.com/drafish>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from './component';
export declare class PageHeader extends AntdComponent {
/**
* Custom backIcon
* @default <ArrowLeftOutlined />
* @type any (string | slot)
*/
backIcon: any;
* Custom prefixCls
* @type string
prefixCls: string;
* Custom title
title: any;
* Custom subTitle
subTitle: any;
breadcrumb: object;
* Custom tags
tags: any;
* Custom footer
footer: any;
* Custom extra
extra: any;
avatar: object;
ghost: boolean;
* Specify a callback that will be called when a user clicks backIcon.
back(): void;
}