import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; export declare const Props: { /** 水印内容 */ readonly content: BasicType, string | null>; /** 水印的宽度 */ readonly width: BasicType; /** 水印的高度 */ readonly height: BasicType; /** 文字大小 */ readonly fontSize: BasicType, string | number | null>; /** 文字颜色 */ readonly fontColor: BasicType, string | null>; /** 自定义图片水印 */ readonly image: BasicType, string | null>; /** 是否为块级元素 */ readonly block: BasicType; /** * 原生 z-index 属性 * * @see z-index https://developer.mozilla.org/zh-CN/docs/Web/CSS/z-index */ readonly zIndex: BasicType; }; /** watermark 组件 props 类型 */ export type WatermarkProps = ExtractPropTypes;