import * as React from 'react'; import { StyleProp, View, ViewStyle } from 'react-native'; declare type Props = React.ComponentPropsWithRef & { /** * Items inside the `CardActions`. */ children: React.ReactNode; style?: StyleProp; }; /** * A component to show a list of actions inside a Card. * *
*
* *
*
* * ## Usage * ```js * import * as React from 'react'; * import { Card, Button } from 'react-native-paper'; * * const MyComponent = () => ( * * * * * * * ); * * export default MyComponent; * ``` */ declare const CardActions: { (props: Props): JSX.Element; displayName: string; }; export default CardActions;