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