import type { ModelProperty, Type } from "@typespec/compiler"; /** * Sometimes a model property type would be another ModelProperty in this case we need to keep unpacking until we find a non Model Property * type to get to the actual type. * This also handles an HttpPart which needs to be unpacked as well. */ export declare function unpackProperty(modelProperty: ModelProperty): Type; //# sourceMappingURL=unpack-model-property.d.ts.map