import React from 'react'; import { PageSection } from '../../app'; interface IProps { style?: React.CSSProperties; pageKey: string; items: PageSection[]; direction: string; stackKey: string; history: any; match: any; } declare function _Stack(props: IProps): JSX.Element; export declare const Stack: React.MemoExoticComponent; export {};