import { Component } from 'react'; import { StackItem } from '../../Details'; import { Dictionary, Field } from '../../../../engine/Engine'; interface Props { data: any; stack: StackItem[]; fields: Dictionary; pushStack: (stackItem: StackItem) => void; } declare class FormView extends Component { render(): JSX.Element; private getData; } export default FormView;