import * as React from 'react'; import { IParent } from '../core'; export interface IconWrapperProps extends IParent { className: string; 'aria-label': string; title?: string; } export interface IconQuestionInformationProps { icon: IconQuestionInformationVariant; ariaLabel: string; tooltip?: string; wrapperComponent?: React.JSXElementConstructor; className?: string; } export declare const enum IconQuestionInformationVariant { Info = "info", Question = "question" } export declare function IconQuestionInformation(props: IconQuestionInformationProps): JSX.Element;