import * as React from 'react';
import { FormViewProps, FormElement } from '@tomino/dynamic-form';
export interface IFieldOwner {
    elements?: FormElement[];
}
declare type Props = {
    className?: string;
    onCreate?: string;
};
export declare const FormView: React.FunctionComponent<FormViewProps & Props>;
export {};
