///
import { ResponsiveValue } from 'styled-system';
import { ComposedGridProps } from '../../private/utils/composers/types';
import { ExtendedBoxComponent, ExtendedBoxProps } from '../../types';
type Props = ComposedGridProps & {
/**
* The number of explicit columns space to take
*/
readonly columns?: ResponsiveValue;
/**
* The number of the initial column where the box will be placed
*/
readonly initialColumn?: ResponsiveValue;
/**
* The number of the initial row where the box will be placed
*/
readonly initialRow?: ResponsiveValue;
/**
* The number of explicit rows space to take
*/
readonly rows?: ResponsiveValue;
};
type GridBoxProps = ExtendedBoxProps;
type GridBoxComponent = ExtendedBoxComponent;
export { GridBoxComponent, GridBoxProps };