import React from 'react'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import type { ProgressBaseProps } from './ProgressBar'; export type ProgressTextLabelProps = Pick< ProgressBaseProps, 'disableAnimateOnMount' | 'disabled' > & { value: number; renderLabel?: (num: number, disabled?: boolean) => React.ReactNode; color?: ThemeVars.Color; /** * Custom style for the text label. */ style?: React.CSSProperties; /** * Custom class name for the text label. */ className?: string; }; export declare const ProgressTextLabel: React.MemoExoticComponent< ({ value, renderLabel, disableAnimateOnMount, disabled, color, style, className, }: ProgressTextLabelProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=ProgressTextLabel.d.ts.map