import React from "react"; import { ShipmentDestinationType } from "../types/shipment"; export declare const ALL_SELECTED: ShipmentDestinationType[]; export interface ShipmentDestinationButtonsProps { defaultSelected?: ShipmentDestinationType[]; onChange?: (selected: ShipmentDestinationType[]) => void; } export declare const ShipmentDestinationButtons: React.FC;