import React from 'react'; import { IconProps } from '../Icon2/Icon'; import './Help.css'; export interface HelpProps { className?: string; text: string | React.ReactNode; type: 'primary' | 'secondary' | 'basic'; alignment?: string; tippyProps?: any; children?: string | React.ReactNode; testId?: string; iconProps?: Partial; iconName?: string; } export declare const Help: (props: HelpProps) => React.JSX.Element; export default Help;