import type { CssTime } from '@breadstone/mosaik-themes'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IReversibleProps } from '../../../Behaviors/Reversible'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; /** * Represents the `IMarqueeElementProps` interface. * * @public */ export interface IMarqueeElementProps extends IReversibleProps, IOrientableProps, ISlottableProps { /** * The speed of the marquee. * * @public */ speed: CssTime; } //# sourceMappingURL=IMarqueeElementProps.d.ts.map