import * as React from 'react';

/**
 * CardBody — from @kibrisyazilim/design-system@0.1.0.
 */
export interface CardBodyProps {
  children?: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}

export declare const CardBody: React.ComponentType<CardBodyProps>;
