/** @jsxRuntime classic */ import { jsx } from '@emotion/react'; import { ReactNode } from 'react'; export interface ISegmentCardProps { withCta?: boolean; body?: ReactNode; title?: string; leftInfo?: string; handleBasicButton?: () => void; handleMainButton?: () => void; } export declare const SegmentCard: ({ withCta, body, title, leftInfo, handleBasicButton, handleMainButton, }: ISegmentCardProps) => jsx.JSX.Element;