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