import type { CSSProperties } from 'react';
import type { RowProps } from 'antd/es/grid/row';
import type { IColProps } from './Col';
export interface IGridProps {
    className?: string;
    style?: CSSProperties;
    gutter?: RowProps['gutter'];
    wrap?: RowProps['wrap'];
    align?: RowProps['align'];
    justify?: RowProps['justify'];
    children: RowProps['children'];
}
export { IColProps };
