import * as CrawlerDriver from '../crawlerDriver';
/**
 * Check: Validate classic attachments
 *
 * We validate that any relation with the semantic "attachment" is compliant to the classic attachments schema.
 *
 * A classic attachment must have:
 * - a field of type name with the semantic "displayName"
 * - a field of type file of type "blob"
 * - TODO: Complete with other fields
 */
declare const check: CrawlerDriver.StepCheck;
export default check;
