import { TappedPromoSpace } from "../../Schema";
export interface TappedPromoSpaceArgs {
    path: string;
    subject: string;
}
/**
 * A user taps a promo space on the home page of the app
 *
 * subject is the text of the tapped promo space
 *
 * @example
 * ```
 * tappedPromoSpace({
 *   path: "/collection/a-collection-id",
 *   subject: "Check out this sweet collection!"
 * })
 * ```
 */
export declare const tappedPromoSpace: ({ path, subject, }: TappedPromoSpaceArgs) => TappedPromoSpace;
