export declare type KYC = { referenceId: string; }; export declare type Create = { customerId: string; } & (kyc | {}); export declare type CheckEvent = { customerId: string; type: string; payload: object; }; export declare type Check = { id?: string; customerId?: string; } & (kyc | {}); declare type kyc = { kyc: KYC; type?: 'kyc'; }; export {};