import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IReversibleProps } from '../../../Behaviors/Reversible'; import type { IGapableProps } from '../../../Behaviors/Gapable'; /** * Represents the `IWrapElementProps` interface. * * @public */ export interface IWrapElementProps extends IOrientableProps, IFitableProps, IReversibleProps, IGapableProps { columns: number; reverse: boolean; } //# sourceMappingURL=IWrapElementProps.d.ts.map