/** * Right-hand comment drawer: lists this session's submitted comments (pin * number, text, reviewer, time, status) and scrolls to / pulses the matching * pin on click. Toggled by a small floating button that appears above the * trigger once at least one comment exists. Lives entirely in the shadow root. * * Also owns the on-page thread popover: clicking a pin opens its comment * thread right at the pin (same entries, same Retry/Discard/Follow up * actions), so the drawer is the overview and the pin is the door. */ import type { Drawer, Runtime } from "../index"; export declare function createDrawer(rt: Runtime): Drawer;