import { Attributes, StrictAttributes } from './types.d'; /** @method addValidationToAttributes for each StrictAttribute, a. check that attribute config is valid: 1. check that type is well known 2. check if type is custom, validate is defined b. build a validation method: 0. check if required, that it is present 1. check if type is well known: if it is, check that type passes 2. check if custom validate method is defined, that it passes */ declare const addValidationToAttributes: ({ attributes }: { attributes: Attributes; }) => StrictAttributes; export default addValidationToAttributes;