import * as React from 'react'; import { StyleProp, View, ViewStyle } from 'react-native'; declare type Props = React.ComponentPropsWithRef & { /** * Items inside the `Card.Content`. */ children: React.ReactNode; /** * @internal */ index?: number; /** * @internal */ total?: number; /** * @internal */ siblings?: Array; style?: StyleProp; }; /** * A component to show content inside a Card. * *
*
* *
*
* * * ## Usage * ```js * import * as React from 'react'; * import { Card, Title, Paragraph } from 'react-native-paper'; * * const MyComponent = () => ( * * * Card title * Card content * * * ); * * export default MyComponent; * ``` */ declare const CardContent: { ({ index, total, siblings, style, ...rest }: Props): JSX.Element; displayName: string; }; export default CardContent;