import { ValidationError } from './ValidationError';
/** The root result from a typical envoc API call when forms are returned */
export interface ValidatedApiResult {
    validationFailures?: ValidationError[];
    hasErrors?: boolean;
}
