import { TappedCollectedArtworkImages } from "../../Schema/Events/MyCollection";
export interface TappedCollectedArtworkImagesArgs {
    contextOwnerId: string;
    contextOwnerSlug: string;
}
/**
 *
 * A user taps into images of an artwork in their My Collection
 *
 * @example
 * ```
 * tappedCollectedArtworkImages({
 *   contextOwnerId: "my-artwork-id",
 *   contextOwnerSlug: "my-artwork-slug"
 * })
 * ```
 */
export declare const tappedCollectedArtworkImages: ({ contextOwnerId, contextOwnerSlug, }: TappedCollectedArtworkImagesArgs) => TappedCollectedArtworkImages;
