import React from 'react'; declare type PeriodChangeSentiment = 'positive' | 'negative' | 'neutral'; export interface DataCardProps extends React.HTMLAttributes { title: string; metric: string; visual?: React.ReactNode; periodChange?: string; periodLabel?: string; periodChangeSentiment?: PeriodChangeSentiment; description?: string | React.ReactNode; expanded?: boolean; accordion?: boolean; onAccordionToggle?: (isOpen: boolean) => void; } declare const DataCard: ({ title, metric, visual, periodChange, periodLabel, periodChangeSentiment, description, expanded, accordion, onAccordionToggle, ...props }: DataCardProps) => JSX.Element; export default DataCard;