import React from "react";
export interface CardActionsProps extends React.PropsWithChildren {
    /**
     * If `true`, the actions will always be visible, regardless of the card's `edit` state.
     */
    alwaysVisible?: boolean;
}
export declare const CardActions: React.FC<CardActionsProps>;
export default CardActions;
