import type { PropType, ExtractPropTypes, CSSProperties } from 'vue'; import type { WatermarkGap, WatermarkOffset, WatermarkFont } from './types'; export declare const watermarkProps: { width: NumberConstructor; height: NumberConstructor; rotate: NumberConstructor; zIndex: NumberConstructor; image: StringConstructor; content: PropType; font: PropType; gap: PropType; offset: PropType; customStyle: PropType; }; export type WatermarkProps = ExtractPropTypes;