import * as React from 'react'; import { StyleProps } from './style'; export type ParagraphProps = StyleProps & { id?: string; text?: string; }; declare class Paragraph extends React.PureComponent { render(): JSX.Element; } export default Paragraph;