import { TextEntityTypeInputUnion } from './index'; export declare type TextEntityInputUnion = TextEntityInput; /** Represents a part of the text that needs to be formatted in some unusual way */ export interface TextEntityInput { _: 'textEntity'; /** Offset of the entity in UTF-16 code points */ offset?: number; /** Length of the entity, in UTF-16 code points */ length?: number; /** Type of the entity */ type?: TextEntityTypeInputUnion; }