import type { ExtractPropTypes } from 'vue';
import type { PropType } from 'vue';
export declare const Props: {
    readonly content: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly width: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly height: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly fontSize: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
    readonly fontColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly image: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly block: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly zIndex: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
};
export declare type WatermarkPropsType = ExtractPropTypes<typeof Props>;
