export type HelpPanelVariants = 'normal' | 'compact'; export interface HelpPanelProps { /** What's in the box? */ children: React.ReactNode; /** If set the compact styling will be used */ variant?: HelpPanelVariants; /** Adds custom classes to the element. */ className?: string; /** Sets the data-testid attribute. */ testId?: string; /** Sets title if needed */ title?: string; } declare const HelpPanel: React.FC; export default HelpPanel;