import React from 'react'; import { ICustomizable, IGlobalAttributes, IParent } from '../../../core'; export interface ParagraphProps extends IParent, ICustomizable, IGlobalAttributes { clampLines?: number; } export interface LinkParagraphProps extends ParagraphProps { href?: string; rel?: string; target?: string; onClick?: (e: React.MouseEvent) => void; } export declare function Paragraph(props: ParagraphProps): JSX.Element; export declare function LinkParagraph(props: LinkParagraphProps): JSX.Element;