import { ElementProps } from "../../../../types/shared.mjs"; import React from "react"; //#region src/components/styles/typography/paragraph/Paragraph.d.ts type FontSize = '64' | '48' | '32' | '24' | '22' | '19' | '16' | '14'; type FontWeight = 'bold' | 'normal'; type ParagraphProps = { size?: 's' | 'm' | 'l'; fontSize?: FontSize; fontWeight?: FontWeight; textAlignRight?: boolean; } & ElementProps<'p'>; declare const Paragraph: { ({ size, fontSize, fontWeight, textAlignRight, className, ...props }: ParagraphProps): React.JSX.Element; displayName: string; }; //#endregion export { FontSize, FontWeight, Paragraph, ParagraphProps };