import * as React from 'react'; import { Text, TextStyle, StyleProp } from 'react-native'; export type Props = React.ComponentProps & { style?: StyleProp; children: React.ReactNode; }; /** * Typography component for showing a subheading. * *
* *
* * ## Usage * ```js * import * as React from 'react'; * import { Subheading } from 'react-native-paper'; * * const MyComponent = () => ( * Subheading * ); * * export default MyComponent; * ``` */ declare const Subheading: (props: Props) => React.JSX.Element; export default Subheading; //# sourceMappingURL=Subheading.d.ts.map