import React from 'react';
import { ViewStyle } from 'react-native';
export interface CardActionsProps {
children: React.ReactNode;
style?: ViewStyle;
}
export declare const CardActionsDefaultProps: {};
/**
* # 🃏 CardActions
*
* A component to show a list of actions inside a Card.
*
* ## Usage
```jsx
import * as React from 'react';
import { Button, Card } from '@bluebase/components';
const MyComponent = () => (
);
export default MyComponent;
```
*/
export declare const CardActions: React.ComponentType;