import { IState } from '../types'; import { IPageKV } from './types/state'; /** * Get all pages * * @param {IState} state */ export declare const getPages: (state: IState) => IPageKV; export declare const getPage: (state: IState, pageId: string) => import("./types/page").IPage; export declare const getPageFromPages: (pages: IPageKV, pageId: string) => import("./types/page").IPage; /** * Check if pageId is a valid page id * * @param {IState} state * @param {string} pageId */ export declare const isValidPageId: (state: IState, pageId: string) => boolean; /** * Check if page property key is a valid property (validPageProperties) * * @param {string} property */ export declare const isValidPagePropertyKey: (property: string) => boolean; /** * Get visible pages * - (visible === true && deleted === false) */ export declare const getVisiblePages: import("reselect").OutputSelector IPageKV>; //# sourceMappingURL=selectors.d.ts.map