import type { RendererNode, RendererElement, ComputedOptions, MethodOptions, ExtractPropTypes,  PropType,  VNode,  Component } from 'vue';
import type { PageHeaderBackInterface } from './interface';
export declare const Props: {
    readonly icon: {
        readonly type: PropType<VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }> | Component<any, any, any, ComputedOptions, MethodOptions>>;
        readonly default: () => null;
    };
    readonly iconSize: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
    readonly backText: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly title: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly titleBold: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly titleColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly titleCenter: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly subtitle: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly back: {
        readonly type: PropType<PageHeaderBackInterface>;
        readonly default: () => null;
    };
};
export declare type PageHeaderPropsType = ExtractPropTypes<typeof Props>;
