/** A component-owned description projection onto its current native semantic control. */ export interface NativeControlDescriptionLease{update(target:HTMLElement|null):void;release():void;} /** * Projects host references before the local description IDs authored by a native-control wrapper. * Transient description owners remain coordinated through the shared baseline updater. */ export declare function acquireNativeControlDescription(host:HTMLElement,initialTarget:HTMLElement|null,localDescriptionIds:()=>string):NativeControlDescriptionLease;