import { Parameter } from "./../index";
export interface ThreadActionGoToThreadInterface {
    beadIndex?: number;
    page?: number;
    threadIndex?: number;
    threadTitle?: string;
}
export declare class ThreadActionGoToThread implements ThreadActionGoToThreadInterface, Parameter {
    beadIndex?: number;
    page?: number;
    threadIndex?: number;
    threadTitle?: string;
    constructor(data: any);
    static getBeadIndexDefault(): number;
    static getBeadIndexDescription(): string;
    static getBeadIndexMin(): number;
    static getPageDefault(): number;
    static getPageDescription(): string;
    static getPageMin(): number;
    static getThreadIndexDefault(): number;
    static getThreadIndexDescription(): string;
    static getThreadIndexMin(): number;
    static getThreadTitleDefault(): string;
    static getThreadTitleDescription(): string;
    static fromJson(data: any): ThreadActionGoToThread;
    toJson(): any;
    clone(): ThreadActionGoToThread;
}
