import * as React from 'react'; import Grid from './Grid'; import { CardProps } from './iCard'; export interface CardInterface extends React.FC { Grid: typeof Grid; } declare const Card: CardInterface; export default Card;