import { type DOMProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface InformationOverlayTriggerProps extends DOMProps, WithChildren { /** 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) => React.ReactElement | null;