import * as React from "react"; import { TextProps } from "react-native"; declare type Props = TextProps & { children: React.ReactNode; }; /** * Typography component for showing a paragraph. * *
* *
* * ## Usage * ```js * import * as React from 'react'; * import { Paragraph } from 'react-native-simple-elements/components/Text'; * * const MyComponent = () => ( * Paragraph * ); * * export default MyComponent; * ``` */ declare const Paragraph: (props: Props) => JSX.Element; export default Paragraph;