import { BoxProps as PoutineBoxProps } from "../Box"; export type ParagrpahProps = { lines?: number; trimLastLine?: boolean; } & PoutineBoxProps; export declare const Paragraph: ({ lines, trimLastLine, ...rest }: ParagrpahProps) => import("react/jsx-runtime").JSX.Element;