import { CustomElement } from '../../Abstracts/CustomElement'; import { ITimelineContentElementProps } from './ITimelineContentElementProps'; declare const TimelineContentElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * TimelineContent - Represents the primary content area within a timeline item. * * @description * Wraps the main textual or visual information for a `TimelineItemElement`. * Placed in the `content` slot of the parent item. * * @name TimelineContent * @element mosaik-timeline-content * @category Layouts * * @slot - Default slot for primary timeline content. * * @cssprop {String} --timeline-content-font-family - Font family for content text * @cssprop {String} --timeline-content-font-size - Font size for content text * @cssprop {String} --timeline-content-font-weight - Font weight for content text * @cssprop {String} --timeline-content-font-line-height - Line height for content text * @cssprop {String} --timeline-content-font-letter-spacing - Letter spacing for content text * @cssprop {String} --timeline-content-font-text-decoration - Text decoration for content text * @cssprop {String} --timeline-content-font-text-transform - Text transform for content text * @cssprop {Color} --timeline-content-foreground-color - Text color of the content area * * @fires connected {ConnectedEvent} - Fired when connected to DOM * @fires changed {PropertyChangedEvent} - Fired when a property changes * * @example * ```html * Event description goes here. * ``` * * @public */ export declare class TimelineContentElement extends TimelineContentElement_base implements ITimelineContentElementProps { /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; } /** * @public */ export declare namespace TimelineContentElement { type Props = ITimelineContentElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-timeline-content': TimelineContentElement; } } export {}; //# sourceMappingURL=TimelineContentElement.d.ts.map