/** * Perform validation over the form data based on the path provided */ export default function useFormFlowValidation(path?: string): { submitted: boolean; data: Object; dirty: boolean; touched: boolean; isAllValid: (paths: string[]) => boolean; validations: import("./SchemaBuilder/Validation").default[]; };