export type AssertOfferPriceOwnershipInput = { offer_id: string; price_ids: string[]; owned_price_ids: Iterable; }; export declare const assertOfferPriceOwnership: ({ offer_id, price_ids, owned_price_ids, }: AssertOfferPriceOwnershipInput) => void;