import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import { IMarqueeElementProps } from './IMarqueeElementProps'; import { CssTime } from '@breadstone/mosaik-themes'; declare const MarqueeElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Reversible").IReversibleProps) & (abstract new (...args: Array) => import("../../../Behaviors/Orientable").IOrientableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Marquee - A component for scrolling text or images horizontally or vertically. * * @element mosaik-marquee * * @description * The Marquee component enables scrolling of text or images across a web page. It can be configured to scroll content * either horizontally or vertically, providing a dynamic and attention-grabbing effect. Marquees are often used to * highlight important information or create visual interest. * * @category Primitives * * @example * ```html * *
Scrolling text or images
*
* ``` * * @public */ export declare class MarqueeElement extends MarqueeElement_base implements IMarqueeElementProps, ISlottable { private _speed; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `speed` property. * * @public * @attr */ get speed(): CssTime; set speed(value: CssTime); } /** * @public */ export declare namespace MarqueeElement { type Props = IMarqueeElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-marquee': MarqueeElement; } } export {}; //# sourceMappingURL=MarqueeElement.d.ts.map