import MemberDef from '../types/memberdef.cjs'; /** * Converts additional property schema node to canonical MemberDef. * Supports: string, object, array, MemberDef with constraints, open forms, * and schema variable references ($schemaName). */ declare function canonicalizeAdditionalProps(node: any, path?: string): MemberDef; export { canonicalizeAdditionalProps };