import * as React from 'react'; import { TextProps } from 'react-native'; export 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-paper'; * * const MyComponent = () => ( * Paragraph * ); * * export default MyComponent; * ``` */ declare const Paragraph: (props: Props) => React.JSX.Element; export default Paragraph; //# sourceMappingURL=Paragraph.d.ts.map