import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapWatermarkText: {}; /** * Class for insert watermark text request building. * @deprecated This model will be removed in the future. */ export declare class WatermarkText implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the watermark rotation angle. */ rotationAngle: number; /** * Gets or sets the watermark text. */ text: string; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }