/**
* @since 1.0.0
*/
import { Validation } from './index'
export interface Reporter<A> {
report: (validation: Validation<any>) => A
}