import { TappedCollectedArtwork } from "../../Schema/Events/MyCollection";
export interface TappedCollectedArtworkArgs {
    contextOwnerId?: string;
    destinationOwnerId: string;
    destinationOwnerSlug: string;
}
/**
 *
 * A user taps an artwork in their My Collection
 *
 * @example
 * ```
 * tappedCollectedArtwork({
 *   destinationOwnerId: "my-artwork-id",
 *   destinationOwnerSlug: "my-artwork-slug",
 * })
 * ```
 */
export declare const tappedCollectedArtwork: ({ contextOwnerId, destinationOwnerId, destinationOwnerSlug, }: TappedCollectedArtworkArgs) => TappedCollectedArtwork;
