import { InteractiveCardProps } from './types';
/**
* InteractiveCard component for creating clickable cards with nested interactive elements.
*
* Features:
* - Clickable card area that can be a button or link
* - Supports nested interactive elements without accessibility violations
* - Uses sibling structure with pointer-events to avoid nested button issues
* - Box-shadow feedback on hover and focus of any interactive element
* - Full keyboard accessibility with proper focus management
* - Touch-friendly with mobile support
* - Customizable padding and background variants via contentProps
* - WCAG AA 2.2 compliant
* - Required ARIA labels for screen reader support
* - Supports all Card props for styling and layout via contentProps
*
* @example
* // Button card with nested actions
*
* Kitchen Measurement 2
*
*
*
*
* @example
* // Link card with nested actions
*
* Tommy Lee's Project
* {
* e.preventDefault();
* handleEdit();
* }} />
*
*/
export declare const InteractiveCard: import('react').ForwardRefExoticComponent>;