import * as CrawlerDriver from '../crawlerDriver';
/**
 * Check: Validate classic user
 *
 * We validate that any field of type Reference with the semantic "user" is compliant to the classic user's schema.
 *
 * A classic user must have:
 * - One field with the DISPLAY_NAME Semantics.
 * - Zero or more fields of type EMAIL.
 */
declare const check: CrawlerDriver.StepCheck;
export default check;
