import { PureComponent } from 'react'; import { Field, Dictionary } from '../../../../engine/Engine'; import { StackItem } from '../../Details'; interface Props { fields: Dictionary; data: any; limbo?: any; engine?: any; query?: any; typeName?: string; pushStack: (data: StackItem) => void; stack?: StackItem; } interface State { data: any; } declare class FormViewStack extends PureComponent { static getDerivedStateFromProps(props: any, state: any): any; constructor(props: any); componentDidMount(): void; componentDidUpdate(nextProps: any): void; render(): JSX.Element; private getData; private objectUpdate; private resetValue; } export default FormViewStack;