export interface SendText { type: "text"; data: SendText.Data; } export declare namespace SendText { interface Data { text: string; } }