import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ColorsTypes } from "../../interfaces/types/ColorsTypes"; import { SizeTypes } from "../../interfaces/types/SizeTypes"; export interface TextInterfaceProps extends PropsInterface { type?: ColorsTypes; size?: SizeTypes; } export declare class Text extends PureComponent { constructor(props: any); render(): JSX.Element; }