import { Parameter } from "./../index";
export interface ReplyToAnnotationInterface {
    comment?: string;
    creator?: string;
    name?: string;
    page?: number;
    replyTo?: string;
    subject?: string;
}
export declare class ReplyToAnnotation implements ReplyToAnnotationInterface, Parameter {
    comment?: string;
    creator?: string;
    name?: string;
    page?: number;
    replyTo?: string;
    subject?: string;
    constructor(data: any);
    static getCommentDefault(): string;
    static getCommentDescription(): string;
    static getCreatorDefault(): string;
    static getCreatorDescription(): string;
    static getNameDefault(): string;
    static getNameDescription(): string;
    static getPageDefault(): number;
    static getPageDescription(): string;
    static getPageMin(): number;
    static getReplyToDefault(): string;
    static getReplyToDescription(): string;
    static getSubjectDefault(): string;
    static getSubjectDescription(): string;
    static fromJson(data: any): ReplyToAnnotation;
    toJson(): any;
    clone(): ReplyToAnnotation;
}
