import type { RowProps, ColProps } from './types'; import Row from './row'; import Col from './col'; declare const Grid: { Row: import("../config-provider/types").ConfiguredComponentClass; Col: import("../config-provider/types").ConfiguredComponentClass & { isNextCol: boolean; }; }; export type { RowProps, ColProps }; export default Grid;