/**
 * An enum representing the direction in which the user is currently typing.
 */
export declare enum TypingDirection {
    Unknown = 0,
    Forward = 1,
    Backward = 2
}
