import { Parameter } from "./../index";
export interface SelectionTransitionInterface {
    pages?: string;
}
export declare class SelectionTransition implements SelectionTransitionInterface, Parameter {
    pages?: string;
    constructor(data: any);
    static getPagesDefault(): string;
    static getPagesDescription(): string;
    static fromJson(data: any): SelectionTransition;
    toJson(): any;
    clone(): SelectionTransition;
}
