import type { BaseContext } from './BaseContext'; import type { InteractionContext } from './InteractionContext'; import type { MessageContext } from './MessageContext'; export declare type AnyContext = BaseContext | MessageContext | InteractionContext;