import type { TextFormatter } from '../../../Types/TextFormatter'; /** * Interface for properties inherited by child MessageContentElements. * * @public */ export interface IMessageInherited { /** * Inherited content text. */ content?: string; /** * Inherited expanded state. */ isExpanded?: boolean; /** * Inherited text formatter. */ formatter?: TextFormatter | null; /** * Inherited disabled state. */ disabled?: boolean; } /** * Context for Message → MessageContent inheritance. * * @public */ export declare const MESSAGE_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=MessageInheritanceContext.d.ts.map