export declare type ChatReportSpamStateUnion = ChatReportSpamState; /** Contains information about the availability of the "Report spam" action for a chat */ export interface ChatReportSpamState { _: 'chatReportSpamState'; /** True, if a prompt with the "Report spam" action should be shown to the user */ canReportSpam: boolean; }