///
import * as React from 'react';
import { Component } from 'react';
import './../../styles/FormExample';
export interface State {
data: {
name: string;
email: string;
tags: string[];
};
debugModeEnabled: boolean;
}
export declare class FormExample extends Component<{}, State> {
state: State;
render(): JSX.Element;
handleChangeForField: (fieldName: string) => (fieldValue: any) => void;
handleJsonDebuggerChange: (object: any) => void;
handleSubmit: (e: React.FormEvent) => void;
toggleDebugMode: () => void;
}