import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { ILocaleableProps } from '../../../Behaviors/Localeable'; /** * Represents the `IEpgChannelElementProps` interface. * * @public */ export interface IEpgChannelElementProps extends ILabelableProps, IValueableProps, IVariantableProps, IAppearanceableProps, IDisableableProps, ILocaleableProps { } //# sourceMappingURL=IEpgChannelElementProps.d.ts.map