export interface DeliveryListsProps { /** GET endpoint for the "Recently Completed" bucket. Default * `/api/delivery/completed`. */ completedApiEndpoint?: string; /** GET endpoint for the "Active Tasks" bucket. Default * `/api/delivery/in-progress`. */ inProgressApiEndpoint?: string; /** URL param key for the search input. MUST match the consuming * chrome's `section.search.paramKey`. Default `'search'`. */ searchParamKey?: string; /** URL param key for the task-type filter. MUST match the consuming * chrome's `section.filter.paramKey`. Default `'task_type'`. */ taskTypeParamKey?: string; } export declare function DeliveryLists({ completedApiEndpoint, inProgressApiEndpoint, searchParamKey, taskTypeParamKey, }?: DeliveryListsProps): import("react").JSX.Element; //# sourceMappingURL=delivery-lists.d.ts.map