import React from 'react'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { type ActionCardProps } from './interfaces'; export type InternalActionCardProps = ActionCardProps & InternalBaseComponentProps; declare const InternalActionCard: React.ForwardRefExoticComponent>; export default InternalActionCard;