import { CSSProperties, FunctionComponent } from 'react';
export interface CardGridProps {
    prefixCls?: string;
    style?: CSSProperties;
    className?: string;
}
declare const Grid: FunctionComponent<CardGridProps>;
export default Grid;
