import ValidationServiceInterface from "./ValidationServiceInterface"; export default class ValidationService implements ValidationServiceInterface { protected configService: any; constructor(configService: any); validate(data: object, schema: object, messages?: {}): object; }