import { HTMLAttributes } from 'react';
export type ParagraphProps = {
margin?: string;
color?: string;
size?: 'small' | 'medium' | 'large' | 'xlarge';
} & HTMLAttributes;
export declare const Paragraph: ({ margin, color, size, children, ...props }: ParagraphProps) => import("react/jsx-runtime").JSX.Element;
export default Paragraph;