import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ChatBegin` - The `ChatBegin` object is used to describe the different types of chat beginnings. * * @public */ export declare const ChatBegin: { /** * `start` - The chat begins at the start. */ readonly Start: "start"; /** * `end` - The chat begins at the end. */ readonly End: "end"; }; /** * @public */ export type ChatBegin = ValuesOf; //# sourceMappingURL=ChatBegin.d.ts.map