import React from 'react'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import { type TextDefaultElement, type TextProps } from '../typography/Text'; export type HelperTextProps = { /** Color of helper text. negative color will render an icon */ color?: ThemeVars.Color; /** Used to associate the helper text with an input */ id?: string; /** Accessibility label for the error icon */ errorIconAccessibilityLabel?: string; /** Test ID for the error icon */ errorIconTestID?: string; } & TextProps; export declare const HelperText: React.NamedExoticComponent; //# sourceMappingURL=HelperText.d.ts.map