import type { Appearance } from '../../../Types/Appearance'; import type { Variant } from '../../../Types/Variant'; /** * Interface for properties inherited by child ChatMessageElements. * * @public */ export interface IChatInherited { /** * Inherited variant. */ variant?: Variant; /** * Inherited appearance. */ appearance?: Appearance; } /** * Context for Chat → ChatMessage inheritance. * * @public */ export declare const CHAT_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=ChatInheritanceContext.d.ts.map