import type { AddressFragment, Maybe, ShippingRateFragment } from '../generated/graphql'; import type { ExternalTypes } from '../typing'; export declare const shippingMethods: (data?: Maybe) => ExternalTypes.ShippingMethodResponse; export declare const shippingMethod: (method: ShippingRateFragment) => ExternalTypes.ShippingMethod; export declare const shipment: (shippingAddress: AddressFragment, shippingLine: ShippingRateFragment) => ExternalTypes.Shipment | null;