import React from 'react';
import { ViewStyle } from 'react-native';
export interface CardContentProps {
children: React.ReactNode;
style?: ViewStyle;
}
export declare const CardContentDefaultProps: {};
/**
* # 🃏 CardContent
*
* A component to show content inside a Card.
*
* ## Usage
```jsx
import * as React from 'react';
import { Body1, Card, H4 } from '@bluebase/components';
const MyComponent = () => (
Card title
Card content
);
export default MyComponent;
```
*/
export declare const CardContent: React.ComponentType;