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