import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IGapableProps } from '../../../Behaviors/Gapable'; /** * Represents the `IMasonryElementProps` interface. * * @public */ export interface IMasonryElementProps extends IFitableProps, IThemeableProps, IGapableProps { columns: number; } //# sourceMappingURL=IMasonryElementProps.d.ts.map