import { type WithChildren, type DataTestId, type DOMProps, type StylingProps } from '@dynatrace/strato-components/core'; /** * @public */ export interface InformationOverlayIconProps extends DOMProps, WithChildren, DataTestId, StylingProps { } /** * The content of the InformationOverlay. * @public */ export declare const InformationOverlayIcon: (props: InformationOverlayIconProps & import("react").RefAttributes) => React.ReactElement | null;