import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { TimelineAlignment } from '../../../Types/TimelineAlignment'; /** * Represents the public properties of `TimelineElement`. * * @public */ export interface ITimelineElementProps extends IThemeableProps, IOrientableProps { /** * Defines the alignment behavior for timeline items. */ align: TimelineAlignment; } //# sourceMappingURL=ITimelineElementProps.d.ts.map