/** * Created by Ivo Meißner on 10.08.17. * * @flow */ import ValidationError from './ValidationError'; declare function validate(config: { [key: string]: any; } | null): Promise; export default validate;