import * as React from "react"; import { Value, Variables } from "expry"; import { Components, Parameters } from "../types/components"; import { ListSchema } from "../types/schema"; import { Flow } from "../types/flow"; export interface FormityProps { components: Components; variables?: Variables; schema: ListSchema; onReturn: OnReturn; initialFlow?: Flow; } export type OnReturn = (data: Value, flow: Flow) => void; export declare function Formity({ components, variables, schema, onReturn, initialFlow, }: FormityProps): React.JSX.Element; //# sourceMappingURL=formity.d.ts.map