import React from 'react'; declare type Props = { description: string | JSX.Element; imgSrc: string; onClick: () => void; title: string | JSX.Element; btnText: string; className?: string; disabled?: boolean; startIcon?: React.ReactNode; }; declare const ImageActionCard: React.FC; export { ImageActionCard };