import { Page } from 'powerbi-client'; export interface PageView { name: string; restrictions: ViewRestrictions; isActive(): boolean; activate(): Promise; canShow(): boolean; } export interface ViewRestrictions { minWidth: number; maxWidth: number; minHeight: number; maxHeight: number; } /** * Map a list of raw pages into a list of lists of related PageViews. */ export declare const groupViews: (pages: Page[]) => PageView[][];