import React, { FC } from 'react'; import { SxProps } from '@mui/material'; interface CardActionAreaProps { onClick?: () => void; href?: string; target?: string; sx?: SxProps; className?: string; children?: React.ReactNode; } export declare const CardActionArea: FC; export {};