import { HTMLAttributes, ReactElement, Ref } from 'react';
import { IComponentBaseProps } from '../types';
export type CardActionsProps = HTMLAttributes & IComponentBaseProps & {
ref?: Ref;
};
declare const CardActions: {
({ ref, children, className, dataTheme, ...props }: CardActionsProps): ReactElement;
displayName: string;
};
export default CardActions;