import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ILocaleableProps } from '../../../Behaviors/Localeable'; /** * Represents the `IEpgTimelineElementProps` interface. * * @public */ export interface IEpgTimelineElementProps extends IAppearanceableProps, IVariantableProps, IDisableableProps, ILocaleableProps { dayWidth: number; hourWidth: number; sidebarWidth: number; numberOfHoursInDay: number; offsetStartHoursRange: number; hasSidebar: boolean; format: string; } //# sourceMappingURL=IEpgTimelineElementProps.d.ts.map