import { type ComputedRef, type Ref } from 'vue'; import { type MaybeRef } from '@vueuse/core'; import { type Shipment } from '@myparcel-pdk/common'; import { type Carrier } from '@myparcel/sdk'; import { type AnyActionDefinition } from '../../types'; export type UseShipmentData = { actions: AnyActionDefinition[]; carrier: Ref; loading: Ref; shipment: ComputedRef; }; export declare const useShipmentData: (id: MaybeRef) => UseShipmentData;