import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ColorsTypes } from "../../interfaces/types/ColorsTypes"; export interface MessageInterfaceProps extends PropsInterface { separate?: boolean; empty?: boolean; type?: ColorsTypes; icon?: string; children: any; } export declare class Message extends PureComponent { constructor(props: any); render(): JSX.Element; }