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