import type { IAlignableProps } from '../../../Behaviors/Alignable'; import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { ColumnDefinitions } from './ColumnDefinitions'; import type { GridLayoutGap } from './IGridLayoutGap'; import type { RowDefinitions } from './RowDefinitions'; /** * Represents the `IGridElementProps` interface. * * @public */ export interface IGridElementProps extends IThemeableProps, IAlignableProps { rowDefinitions: RowDefinitions; columnDefinitions: ColumnDefinitions; gap: GridLayoutGap; } //# sourceMappingURL=IGridElementProps.d.ts.map