import { sizePropValidator } from '../../mixins';
import { Classes } from '../../types';
declare const _default: import("vue").DefineComponent<{
    /**
     * The color variant of the header
     * @type primary | light | dark
     * @default light
     * @name color
     */
    color: {
        type: StringConstructor;
        default: () => string;
    };
    /**
     * Display the header background as cover, always covering the whole header width or height
     * @type Boolean
     * @default false
     * @name cover
     */
    cover: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * Display the inner content container as fluid, covering 100% of the header width
     * @type Boolean
     * @default false
     * @name fluid
     */
    fluid: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * Display the header as fullscreen, covering 100% screen height and 100% screen width
     * @type Boolean
     * @default true
     * @name fullscreen
     */
    fullscreen: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * The size variant of the header
     * @type sm | md | lg
     * @default md
     * @name size
     */
    size: {
        type: StringConstructor;
        default: () => string;
        validator: typeof sizePropValidator;
    };
}, unknown, unknown, {
    classes(): Classes;
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
    color?: unknown;
    cover?: unknown;
    fluid?: unknown;
    fullscreen?: unknown;
    size?: unknown;
} & {
    color: string;
    size: string;
    fluid: boolean;
    cover: boolean;
    fullscreen: boolean;
} & {}>, {
    color: string;
    size: string;
    fluid: boolean;
    cover: boolean;
    fullscreen: boolean;
}>;
export default _default;
