/** * `` — the full bug-fixes & enhancements (`delivery`) page: * `DevSectionPage sectionKey="delivery"` chrome wrapping the self-contained * `` (Recently Completed + Active Tasks tables). Hosts configure * only the two bucket api routes. */ import type { ReactNode } from 'react'; export interface DeliveryPageProps { /** GET endpoint for the "Recently Completed" bucket. Default `/api/delivery/completed`. */ completedEndpoint?: string; /** GET endpoint for the "Active Tasks" bucket. Default `/api/delivery/in-progress`. */ inProgressEndpoint?: string; /** Back-button config. Pass `false` to hide. Default `{ href: '/' }`. */ backButton?: { label?: string; href?: string; } | false; title?: string; subtitle?: string; /** Optional slot rendered below the lists, inside the page chrome. */ belowContent?: ReactNode; /** Render the standalone ``. Default true. Pass false when the host * layout already provides the page container (forwarded to `DevSectionPage`). */ shell?: boolean; } export declare function DeliveryPage({ completedEndpoint, inProgressEndpoint, backButton, title, subtitle, belowContent, shell, }: DeliveryPageProps): import("react").JSX.Element; //# sourceMappingURL=delivery-page.d.ts.map