import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISizeableProps } from '../../../Behaviors/Sizeable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IListingItemElementProps` interface. * * @public */ export interface IListingItemElementProps extends IDisableableProps, ISizeableProps, ITextFormattableProps, IVariantableProps, IAppearanceableProps { /** * The header text displayed in bold above the content. */ header: string; /** * The content text displayed below the header. */ content: string; /** * The ordinal value of this list item when used in an ordered listing. * When set, overrides the auto-calculated index. */ value: number | null; } //# sourceMappingURL=IListingItemElementProps.d.ts.map