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; } declare const _default: ({ isActive, isInput, disabled, hasFocus, onClick, onKeyPress, ...other }: ButtonCardProps) => JSX.Element; export default _default;