import * as React from 'react'; export type ParagraphKind = 'fineprint' | 'preamble'; export interface ParagraphProps extends React.HTMLAttributes { /** * One of 'fineprint' or 'preamble'. */ kind?: ParagraphKind; className?: string; children?: React.ReactNode; id?: string; } export const Paragraph: React.FC; export default Paragraph;