import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { OnClickEventType } from "../../interfaces/types/OnClickEventType"; export interface ModuleCardTaskInterfaceProps extends PropsInterface { card?: boolean; fluid?: boolean; separate?: boolean; title: string; code: string; description: string; icon?: string; color?: string; user: { userName: string; userImage?: string; } | null; onClickCard?: OnClickEventType; onClickTitle?: OnClickEventType; draggable?: boolean; onDragStart?: any; id?: any; index?: any; } export declare class ModuleCardTask extends PureComponent { constructor(props: any); render(): JSX.Element; }