import { DataTestId } from '../../core/types/data-props.js'; import { DOMProps } from '../../core/types/dom.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @public */ export interface InformationOverlayIconProps extends DOMProps, WithChildren, DataTestId, StylingProps { } /** * The content of the InformationOverlay. * @public */ export declare const InformationOverlayIcon: (props: InformationOverlayIconProps & import("react").RefAttributes) => import("react").ReactElement | null;