import React from 'react';
import PropTypes from 'prop-types';
import { InfoIconProps } from './InfoIcon.types';
declare const InfoIcon: {
    ({ dataHook, content, size, tooltipProps, className, children, "aria-labelledby": ariaLabelledBy, "aria-describedby": ariaDescribedBy, }: InfoIconProps): React.JSX.Element;
    displayName: string;
    propTypes: {
        dataHook: PropTypes.Requireable<string>;
        className: PropTypes.Requireable<string>;
        size: PropTypes.Requireable<string>;
        content: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
        tooltipProps: PropTypes.Requireable<PropTypes.InferProps<any>>;
        children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        'aria-describedby': PropTypes.Requireable<string>;
        'aria-labelledby': PropTypes.Requireable<string>;
    };
};
export default InfoIcon;
//# sourceMappingURL=InfoIcon.d.ts.map