import React from "react"; import { type IconProps } from "../../Icon/Icon"; import { type BoxProps } from "../../Box/Box"; export type CardProps = { iconProps?: IconProps; rightElement?: React.ReactNode; "data-e2e-test-id"?: string; }; export type CardButtonProps = { disabled?: boolean; onBlur?: (e: React.FocusEvent) => void; onClick?: (e: React.MouseEvent) => void; onFocus?: (e: React.FocusEvent) => void; }; export type InteractiveBoxProps = CardButtonProps & CardProps & BoxProps; export declare const InteractiveCard: React.ForwardRefExoticComponent>;