/** * @deprecated This component is deprecated. Please use the alpha `DataCard` from `@coinbase/cds-web/alpha/data-card` instead. * * ### Migration Guide * * The new `DataCard` provides more flexibility with custom layouts and visualization components. * * **Before:** * ```jsx * * ``` * * **After:** * ```jsx * import { DataCard } from '@coinbase/cds-web/alpha/data-card'; * * } * > * * * * * ``` */ import React from 'react'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import type { SharedProps } from '@coinbase/cds-common/types'; import { type CardBaseProps } from './Card'; export type DataCardBaseProps = CardBaseProps & SharedProps & { onClick?: CardBaseProps['onClick']; /** Text to be displayed in TextHeadline under CardHeader section. */ title: string; /** Text to be displayed in TextLabel2 under title. */ description: string; startLabel?: string; endLabel?: string; progressVariant?: 'bar' | 'circle'; progress?: number; progressColor?: ThemeVars.Color; }; export type DataCardProps = DataCardBaseProps; export declare const DataCard: React.NamedExoticComponent; //# sourceMappingURL=DataCard.d.ts.map