/// export interface ImageLeftCardProps { className?: string; classes?: { root: string; }; children?: JSX.Element; imageSrc: string; imageAlt?: string; apiServerUrl?: string; imageStorageBaseUrl?: string; title: string; buttonText: string; buttonUrl: string; buttonIcon?: JSX.Element; buttonBlankTarget?: boolean; } declare function ImageLeftCard({ className, classes, children, imageSrc, imageAlt, apiServerUrl, imageStorageBaseUrl, title, buttonText, buttonUrl, buttonIcon, buttonBlankTarget, }: ImageLeftCardProps): JSX.Element; export { ImageLeftCard };