import * as React from 'react'; export interface CardGridProps extends React.HTMLAttributes { prefixCls?: string; className?: string; hoverable?: boolean; style?: React.CSSProperties; } declare const Grid: React.FC; export default Grid;