/// import { IJaenPage } from '../../../../types'; import { ContentValues } from './PageContent'; import { PageTreeProps } from './PageTree'; export interface PagesTabProps extends PageTreeProps { getPage: (id: string) => IJaenPage | null; onPageUpdate: (id: string, values: ContentValues) => void; } /** * PagesTab is a component for displaying the page tree with content in the dashboard. * Display PageTree and PageContent next to each other. */ declare const PagesTab: () => JSX.Element; export default PagesTab;