/**
* DeliveryTable — bordered card containing one `` per
* item. Visual rendering of each row lives in `delivery-row.tsx` so the
* exact same primitive can be composed elsewhere (notably the linked-
* delivery surface inside ``).
*
* Props:
* - `items` — flat list of `DeliveryItem`. Two buckets (completed +
* in-progress) are rendered as two separate `DeliveryTable`s by
* the parent `DeliveryLists`.
* - `isLoading` — skeleton rows.
* - `focusId` — `?focus=` URL param. Marks the matching row
* `id="delivery-"` and applies the highlight ring so the
* deep-link from a ticket's linked-card scrolls + flashes the
* right row.
*/
import type { DeliveryItem } from '../../../types/delivery';
interface DeliveryTableProps {
items: DeliveryItem[];
isLoading?: boolean;
}
/**
* DeliveryTable Component
* Displays bug fixes and enhancements with fixed-height rows
*/
export declare function DeliveryTable({ items, isLoading }: DeliveryTableProps): import("react").JSX.Element;
export {};
//# sourceMappingURL=delivery-table.d.ts.map