import type { PropType, ExtractPropTypes } from 'vue';
export declare const Props: {
    readonly height: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
    readonly padding: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
};
export declare type HeaderPropsType = ExtractPropTypes<typeof Props>;
