import { FormValidateServiceContract } from './contracts/FormValidateServiceContract';
import { ValidateService } from '../ValidateService/ValidateService';
import { ValidateErrorListInterface } from '../ValidateService/interfaces/ValidateErrorListInterface';
import { Form } from '../../entities/Form/Form';
export declare class JQueryFormValidateService extends ValidateService implements FormValidateServiceContract {
    validateForm(form: Form): ValidateErrorListInterface | true;
}
