import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface CardActionableAreaBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** Callback fired when the area is clicked. */ onClick?: React.MouseEventHandler; } export declare type CardActionableAreaProps = MergeElementProps<"div", CardActionableAreaBaseProps>; declare type Component = { (props: CardActionableAreaProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const CardActionableArea: Component; export default CardActionableArea;