import { ReactNode, default as React } from 'react'; import { RichText } from '../../types'; import { ButtonProps } from '../Button/Button'; export interface ActionCardProps { /** * Buttons or Anchors to display on the card * @default undefined */ buttons?: ({ primaryButtonProps, secondaryButtonProps, }: { primaryButtonProps: ButtonProps; secondaryButtonProps: ButtonProps; }) => ReactNode; /** * Content to display on the card * @default undefined */ children?: ReactNode; /** * Description to display on the card * @default undefined */ description?: RichText; /** * If the card should be responsive * @default true */ responsive?: boolean; /** * Tags to display on the card * @default undefined */ tags?: ReactNode; /** * Header to display on the card * @default undefined */ title?: ReactNode; } export declare function ActionCard({ tags, buttons: buttonsProp, children, description, responsive, title, ...rest }: ActionCardProps): React.JSX.Element;