import { type DeliveryItem } from '../../../types/delivery'; export interface DeliveryRowProps { item: DeliveryItem; /** When set, the row becomes a clickable anchor. The ticket-side * linked-card composes this from `buildDevSectionUrl('delivery', id)` * which carries `?search=` — the delivery list filters to that * exact task on landing (canonical deep-link mechanism, same one * the chat-inline delivery card uses). */ href?: string; /** Small uppercase caption rendered above the title. Used by the * linked-delivery card variant ("LINKED DELIVERY"). */ caption?: string; /** DOM `id` applied to the row's outer element. `DeliveryTable` * always sets `delivery-` so chat-card deep-links * (`?search=#delivery-`) and the ticket linked-card path * both have a target for `useScrollToHash` to scroll to. Always * paired with `scroll-mt-24` on the outer element so the row lands * BELOW the sticky chrome after the scroll. */ id?: string; /** `'_blank'` renders a plain external anchor (new tab, `rel` hardened) — * for rows whose href leaves the app (e.g. the raw ClickUp task URL on the * design-doc surfaces). Internal deep-links omit it and keep the Link shim. */ target?: '_blank'; className?: string; } export declare function DeliveryRow({ item, href, target, caption, id, className }: DeliveryRowProps): import("react").JSX.Element; //# sourceMappingURL=delivery-row.d.ts.map