export declare class Page {
    panelId: string;
    viewId: string;
    rootId: string;
    isInfinityPanel: boolean;
    constructor(panelId?: string, viewId?: string, rootId?: string);
    clone(): Page;
    makeInfinity(): this;
}
