import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface GroupTextSeparateInterfaceProps extends PropsInterface { left: string; right: string | any; bold?: boolean; } export declare class GroupTextSeparate extends PureComponent { constructor(props: any); render(): JSX.Element; }