*
* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
* ut labore et dolore magna aliqua.
*
*
* ```
*
* @tag m3e-text-highlight
*
* @slot - Renders the content to highlight.
*
* @attr case-sensitive - A value indicating whether matching is case sensitive.
* @attr disabled - A value indicating whether text highlighting is disabled.
* @attr term - The term to highlight.
*
* @fires highlight - Emitted when content is highlighted.
*
* @cssprop --m3e-text-highlight-container-color - Background color applied to highlighted text ranges.
* @cssprop --m3e-text-highlight-color - Foreground color of highlighted text content.
* @cssprop --m3e-text-highlight-decoration - Optional text decoration (e.g., underline, line-through) for highlighted text.
* @cssprop --m3e-text-highlight-shadow - Optional text shadow for emphasis or contrast.
*/
export declare class M3eTextHighlightElement extends LitElement {
#private;
/** The styles of the element. */
static styles: CSSResultGroup;
/** @private */ private static __nextId;
constructor();
/**
* A value indicating whether text highlighting is disabled.
* @default false
*/
disabled: boolean;
/**
* The term to highlight.
* @default ""
*/
term: string;
/**
* A value indicating whether matching is case sensitive.
* @default false
*/
caseSensitive: boolean;
/** A value indicating whether text highlighting is supported by the browser. */
get isSupported(): boolean;
/** The ranges that match the current term. */
get ranges(): readonly Range[];
/** @inheritdoc */
protected firstUpdated(_changedProperties: PropertyValues): void;
/** @inheritdoc */
protected updated(_changedProperties: PropertyValues