import { IEvolutionMessageKeyResponse } from './i-message-key';
export interface IEvolutionMessageResponse {
    key: IEvolutionMessageKeyResponse | null;
    message: any;
    messageTimestamp: string | null;
    status: string | null;
}
