import { CustomElement } from "../../internal/custom-element.js"; import { PropertyValues } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-line-clamp': OdxLineClamp; } } /** * @summary A component that truncates text after a specified number of lines and adds an ellipsis. * * @slot - The text content to be clamped. This component will apply the line clamp to its text content. */ declare class OdxLineClamp extends CustomElement { static tagName: string; static styles: import("lit").CSSResult[]; /** * The maximum number of lines to display before truncating the text. */ max?: number | null; protected updated(props: PropertyValues): void; } export { OdxLineClamp };