import * as React from "react"; import { CardProps } from "./Card"; export interface ButtonCardProps extends CardProps { /** * Whether the component should look and act like a disabled element */ disabled?: boolean; /** * Whether the component is in the "on" state */ isActive?: boolean; /** * Whether the component is controlled by a checkbox or radio input */ isInput?: boolean; /** * Whether the component's child input has focus */ hasFocus?: boolean; /** * Allows custom styling */ className?: string; } declare const _default: ({ isActive, isInput, disabled, hasFocus, onClick, className, onKeyDown, "data-cy": dataCy, ...other }: ButtonCardProps) => React.JSX.Element; export default _default;