///
import { IFormProps, IJaenTemplate } from '../../../../../types';
export type ContentValues = {
title: string;
slug: string;
image?: string;
description?: string;
excludedFromIndex?: boolean;
};
export interface PageContentProps extends IFormProps {
jaenPageId: string;
template: IJaenTemplate | null;
publishedAt: string | undefined;
}
/**
* Component for displaying a page content.
*
* It includes Accordion that can be used to expand/collapse the page content.
*/
export declare const PageContent: (props: PageContentProps) => JSX.Element;