import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleOInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; import { ColorsTypes } from "../../interfaces/types/ColorsTypes"; export interface GroupTextTitleInterfaceProps extends PropsInterface, TitleSubtitleOInterface { subTitleColor?: ColorsTypes; } export declare class GroupTextTitle extends PureComponent { constructor(props: any); render(): JSX.Element; }