import { PureComponent } from "react"; import React from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; export interface CardInterfaceProps extends PropsInterface, TitleSubtitleInterface { header?: any; footer?: any; fluid?: boolean; bodyNoPadding?: boolean; classNameBody?: string; classNameContent?: string; styleContent?: any; open?: boolean; } export declare class Card extends PureComponent { static defaultProps: { open: boolean; }; get renderHeader(): JSX.Element; get renderBody(): JSX.Element; render(): React.ReactNode; }