import React from 'react'; import { PageSection, PageSectionItem } from '../../app'; interface IProps { style?: React.CSSProperties; pageKey: string; meta: { [x: string]: any; }; items: (PageSection | PageSectionItem)[]; panelKey: string; forceUpdate: Function; history: any; match: any; } declare function _Panel(props: IProps): JSX.Element; export declare const Panel: typeof _Panel; export {};