import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IExpandableProps } from '../../../Behaviors/Expandable'; import type { ExpandDirection } from '../../../Types/ExpandDirection'; /** * Represents the `IExpandableElementProps` interface. * * @public */ export interface IExpandableElementProps extends IDisableableProps, IExpandableProps { /** * The direction in which the element expands. */ direction: ExpandDirection; } //# sourceMappingURL=IExpandableElementProps.d.ts.map