import { Context } from '@metaplex-foundation/umi'; import { CollectionV1, transferV1, AssetV1 } from '../generated'; export type TransferArgs = Omit[1], 'asset' | 'collection'> & { asset: Pick; collection?: Pick; }; export declare const transfer: (context: Pick, { asset, collection, ...args }: TransferArgs) => import("@metaplex-foundation/umi").TransactionBuilder;