
import * as React from 'react';


interface CardProps {
  slot?: string;
  className?: string;
  style?: React.CSSProperties;
  title?: string;
  inset?: boolean;
  ref?: React.MutableRefObject<{el: HTMLElement | null}>;
  children?: React.ReactNode;
}
declare const Card: React.FunctionComponent<CardProps>;

export default Card;
  