import type { IAlignableProps } from '../../../Behaviors/Alignable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IGapableProps } from '../../../Behaviors/Gapable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IReversibleProps } from '../../../Behaviors/Reversible'; /** * The properties of the `StackElement`. * * @public */ export interface IStackElementProps extends IOrientableProps, IFitableProps, IReversibleProps, IGapableProps, IAlignableProps { wrap: boolean; } //# sourceMappingURL=IStackElementProps.d.ts.map