import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; import { HelperTextSize, HelperTextAppearance } from '@viasat/beam-shared/components/helperText'; import * as React from 'react'; export interface HelperTextProps extends React.ComponentPropsWithoutRef<'div'> { /** * Specify the appearance of the HelperText */ appearance?: HelperTextAppearance; /** * Specify the size of the HelperText */ size?: HelperTextSize; /** * Specify if the message is disabled for HelpText * @default false */ disabled?: boolean; /** * Specify if the icon displays on the HelperText * @default false */ hideIcon?: boolean; /** * Specify a different icon for the HelperText */ icon?: React.ReactElement; /** * Add or customize content in the HelperText */ children?: React.ReactNode; /** * Specify the theme of the HelperText. By default it inherits the theme from the parent */ theme?: ThemeTypes; } export declare function HelperText({ icon, theme, children, size, hideIcon, appearance, className: _className, disabled: _disabled, ...props }: HelperTextProps): import("react/jsx-runtime").JSX.Element; export default HelperText;