@amaui/ui-react
Version: 
UI for React
19 lines (18 loc) • 488 B
TypeScript
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<IPage>;
export default Page;