import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import type { DataTestId } from '../../core/types/data-props.js'; import type { DOMProps } from '../../core/types/dom.js'; import type { MaskingProps } from '../../core/types/masking-props.js'; import type { StylingProps } from '../../core/types/styling-props.js'; import type { WithChildren } from '../../core/types/with-children.js'; /** * @public */ export interface InformationOverlayTriggerProps extends DOMProps, WithChildren, StylingProps, MaskingProps, DataTestId, BehaviorTrackingProps { /** Optional aria-label to provide an additional description for the trigger. */ 'aria-label'?: string; } /** * InformationOverlay Trigger component, used for rendering trigger content. * @public */ export declare const Trigger: (props: InformationOverlayTriggerProps & import("react").RefAttributes) => import("react").ReactElement | null;