import React from 'react';
export type CardActionsProps = {
    className?: string;
    direction?: 'column' | 'row';
};
export declare const CardActions: React.FC<CardActionsProps>;
