@onesy/ui-react
Version:
UI for React
19 lines (18 loc) • 494 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IElement, IElementReference } from '../types';
export declare type IPageForward = {
to?: string;
name?: string;
label?: string;
};
export declare type IPage = ILine & {
back?: IPageForward;
forward?: IPageForward;
noHeader?: boolean;
name?: string | IElement;
IconBack?: IElementReference;
IconForward?: IElementReference;
};
declare const Page: React.FC<IPage>;
export default Page;