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