import { Attributes, ConvinienceAttributes } from './types.d'; /** @method normalizeSchemaAttributes @description this method is responsible for explicitly setting defaults and casting shorthand notations to long hand notations. for each attribute: 1. convert shorthand to longhand ( attrKey: string -> attrKey: { type: string }) 2. set default value for required 3. append attribute name */ declare const normalizeSchemaAttributes: ({ attributes }: { attributes: ConvinienceAttributes; }) => Attributes; export default normalizeSchemaAttributes;