import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { LoyaltyPromotionUpdatedEventData } from "./LoyaltyPromotionUpdatedEventData"; export declare const LoyaltyPromotionUpdatedEvent: core.serialization.ObjectSchema; export declare namespace LoyaltyPromotionUpdatedEvent { interface Raw { merchant_id?: (string | null | undefined) | null; type?: (string | null | undefined) | null; event_id?: (string | null | undefined) | null; created_at?: string | null; data?: LoyaltyPromotionUpdatedEventData.Raw | null; } }