import { cellHelperTextVariants } from '@coinbase/cds-common/tokens/cell'; import { type TextProps } from '../typography/Text'; export type CellHelperTextVariant = 'information' | 'warning' | 'error'; export type CellHelperTextProps = TextProps<'span'> & { /** The variant determines the icon and color scheme */ variant?: keyof typeof cellHelperTextVariants; }; export declare const CellHelperText: import('react').MemoExoticComponent< import('react').ForwardRefExoticComponent< Omit & import('react').RefAttributes > >; //# sourceMappingURL=CellHelperText.d.ts.map