export type ValidatorOptions = { checkReservedKeywords?: boolean; }; export default class Validator { objectType: any; fieldsToCheck: any; constructor(objectType: any, fieldsToCheck: any); validate(object: any, _options?: ValidatorOptions): void; }