import { ReactNode } from 'react'; interface MotionCardProps { children: ReactNode; className?: string; /** Enable hover elevation effect (default: true) */ hoverable?: boolean; /** Enable tap scale effect (default: true when onClick provided) */ tappable?: boolean; onClick?: () => void; layout?: boolean; } /** * Card wrapper with hover elevation and tap feedback animations. * Automatically applies hover lift + shadow and tap scale-down. */ export declare function MotionCard({ children, className, hoverable, tappable, onClick, layout, }: MotionCardProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MotionCard.d.ts.map