/**
 * @typedef {import('../../types').PresentationalProps} CommonProps
 * @typedef {import('preact').JSX.HTMLAttributes<HTMLElement>} HTMLAttributes
 */
/**
 * Render a group of buttons or interactive elements inside a Card
 *
 * @param {CommonProps & HTMLAttributes} props
 */
export default function CardActions({ children, classes, elementRef, ...htmlAttributes }: CommonProps & HTMLAttributes): import("preact").JSX.Element;
export type CommonProps = import('../../types').PresentationalProps;
export type HTMLAttributes = import('preact').JSX.HTMLAttributes<HTMLElement>;
