import { PureComponent } from "react"; import React from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { OnClickEventType } from "../../interfaces/types/OnClickEventType"; export interface CardBlockInterfaceProps extends PropsInterface { fluid?: boolean; card?: boolean; separate?: boolean; color?: string; onClickCard?: OnClickEventType; } export declare class CardBlock extends PureComponent { static defaultProps: { open: boolean; }; render(): React.ReactNode; }