import { ContextModule, ScreenOwnerType, TappedSell } from "../../Schema";
export interface TappedSellArgs {
    contextModule: ContextModule;
    contextScreenOwnerType: ScreenOwnerType;
    contextScreenOwnerId?: string;
    contextScreenOwnerSlug?: string;
    subject: string;
}
export declare const tappedSell: ({ contextModule, contextScreenOwnerType, contextScreenOwnerId, contextScreenOwnerSlug, subject, }: TappedSellArgs) => TappedSell;
