import { Merchant } from '../Merchant'; import { MerchantEventType } from './MerchantEventType'; export declare class MerchantEvent { constructor(partial?: Partial); merchant: Merchant; type: MerchantEventType; }