import * as React from 'react';
type CardPartsProps = {
    title?: React.ReactNode;
    description?: React.ReactNode;
    content?: React.ReactNode;
    footer?: React.ReactNode;
};
export type SimpleCardProps = Omit<React.HTMLAttributes<HTMLDivElement>, 'content' | 'title' | 'footer' | 'description'> & CardPartsProps & {
    _cardHeaderProps?: React.HTMLAttributes<HTMLDivElement>;
    _cardTitleProps?: React.HTMLAttributes<HTMLHeadingElement>;
    _cardDescriptionProps?: React.HTMLAttributes<HTMLParagraphElement>;
    _cardContentProps?: React.HTMLAttributes<HTMLDivElement>;
    _cardFooterProps?: React.HTMLAttributes<HTMLDivElement>;
};
declare const SimpleCard: ({ title, description, content, children, footer, _cardHeaderProps, _cardTitleProps, _cardDescriptionProps, _cardContentProps, _cardFooterProps, ...props }: SimpleCardProps) => import("react/jsx-runtime").JSX.Element;
export { SimpleCard };
