import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { FlowbiteColors } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteHelperTextTheme { base: string; colors: HelperColors; } export interface HelperColors extends Pick { [key: string]: string; } export interface HelperTextProps extends PropsWithChildren, 'color'>> { color?: keyof HelperColors; value?: string; } export declare const HelperText: FC;