import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface ParagraphProperties {
    theme?: Theme;
    size?: 'small' | 'normal' | 'large';
    fontFamily?: 'sans-serif' | 'serif';
    style?: React.CSSProperties;
    className?: string;
}
declare const Paragraph: React.FC<React.PropsWithChildren<ParagraphProperties>>;
export default Paragraph;
