import { type PropsWithChildren } from 'react';
interface ParagraphProps {
    bold?: boolean;
    color?: 'danger' | 'info' | 'muted' | 'prose' | 'success' | 'warning';
    size?: 'lg' | 'md' | 'sm';
}
export declare function Paragraph({ bold, children, color, size }: PropsWithChildren<ParagraphProps>): import("react/jsx-runtime").JSX.Element;
export {};
