import React from 'react'; import { ILine } from '../Line/Line'; import { IElement, IElementReference } from '../types'; export interface IPageForward { to?: string; name?: string; label?: string; } export interface IPage extends ILine { back?: IPageForward; forward?: IPageForward; noHeader?: boolean; name?: string | IElement; IconBack?: IElementReference; IconForward?: IElementReference; } declare const Page: React.FC; export default Page;