import { default as React } from 'react'; interface MicroCardTemplateProps { ariaLabel?: string; closeAriaLabel?: string; description: string; elevation?: number; icon?: React.ReactNode; isActiveCard?: boolean; heightOverrides?: string | number; onClose?: () => void; onCardClick?: () => void; onPrimaryAction?: () => void; onSecondaryAction?: () => void; primaryActionText?: string; secondaryActionText?: string; title: string; variant?: 'outlined' | 'elevation' | undefined; widthOverrides?: string | number; } declare const MicroCardTemplate: React.ForwardRefExoticComponent>; export default MicroCardTemplate;