export interface Page {
    state: any;
    id: string;
}
export default function getPageState(state: any, pageId?: string): Page;
