import { CSSProperties } from 'react'; export interface IWaterMarkProps { imageWidth?: number; imageHeight?: number; textColor?: string; fontStyle?: string; fontSize?: number; angle?: number; text?: string; style?: CSSProperties; } export declare function createWaterMark(props: IWaterMarkProps): CSSProperties; /** * 水印组件 * @param style * @param props * @constructor */ export declare function NGWaterMark({ style, ...props }: IWaterMarkProps): JSX.Element;