import React from "react";
import { IFormFeedback } from "@formily/core";
import { IFormilySchema } from "@designable/formily-transformer";
export interface IListOfFormsProps {
    json?: IFormilySchema;
    submitTitle?: string;
    style?: React.CSSProperties;
    onClickSubmit?: (e: React.MouseEvent<Element, MouseEvent>) => any;
    onSubmit?: (values: any) => Promise<any> | any;
    onSubmitSuccess?: (payload: any) => void;
    onSubmitFailed?: (feedbacks: IFormFeedback[]) => void;
}
declare const ListOfForms: React.FC<IListOfFormsProps>;
export default ListOfForms;
