import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IRippleableProps } from '../../../Behaviors/Rippleable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { CaretPosition } from '../../../Types/CaretPosition'; import type { IExpandableElementProps } from '../../Primitives/Expandable/IExpandableElementProps'; /** * Represents the `IExpanderElementProps` interface. * * @public */ export interface IExpanderElementProps extends IExpandableElementProps, IVariantableProps, IAppearanceableProps, IDisableableProps, IRippleableProps { header: string; subHeader: string; icon: string; caretPosition: CaretPosition; } //# sourceMappingURL=IExpanderElementProps.d.ts.map