import { PartContentType, XboxMessage } from '../..'; import { GatewayTextContentPart } from '../../ws'; import { BasePart } from './BasePart'; export type APITextPart = { text: string; contentType: string; version: number; }; export declare class TextPart extends BasePart { type: PartContentType.Text; text: string; constructor(client: XboxMessage, data: GatewayTextContentPart); }