import { PageId, PageLabel, PageContentType } from '../state/index.js'; export declare const actionTypes: { UPDATE_PAGE_ID: string; RESET_PAGE_ID: string; UPDATE_PAGE_LABEL: string; RESET_PAGE_LABEL: string; UPDATE_PAGE_CONTENT_TYPE: string; RESET_PAGE_CONTENT_TYPE: string; UPDATE_PAGE_LOAD: string; RESET_PAGE_LOAD: string; }; export declare const updatePageId: (pagePath: Array, id: PageId) => { type: string; pagePath: number[]; id: PageId; }; export declare const resetPageId: (pagePath: Array) => { type: string; pagePath: number[]; }; export declare const updatePageLabel: (pagePath: Array, label: PageLabel) => { type: string; pagePath: number[]; label: PageLabel; }; export declare const resetPageLabel: (pagePath: Array) => { type: string; pagePath: number[]; }; export declare const updatePageContentType: (pagePath: Array, contentType: PageContentType) => { type: string; pagePath: number[]; contentType: PageContentType; }; export declare const resetPageContentType: (pagePath: Array) => { type: string; pagePath: number[]; }; export declare const updatePageLoad: (load: (pageId: string) => void) => { type: string; load: (pageId: string) => void; }; export declare const resetPageLoad: () => { type: string; };