import type { PropType, ExtractPropTypes } from 'vue';
export declare const Props: {
    readonly content: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly contentSize: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly contentColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly imageSrc: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly imageSize: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
    readonly background: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
};
export declare type EmptyPropsType = ExtractPropTypes<typeof Props>;
