/// <reference types="react" />
export interface CardActionsProps {
    /**
     * If `horizontal`, the buttons are shown side by side.
     */
    variant?: 'vertical' | 'horizontal';
    /**
     * The children of the card content.
     */
    children: React.ReactNode;
}
