import { default as React } from 'react'; export interface HelpDetailsProps { /** Sets the text content of the HelpDetails. */ children: React.ReactNode; /** Ref for the element the HelpDetails is placed upon */ controllerRef?: React.RefObject; /** Sets the data-testid attribute. */ testId?: string; /** Ref passed to the component */ ref?: React.Ref; } declare const HelpDetails: React.FC; export default HelpDetails;