import { type MouseEvent as ReactMouseEvent } from 'react'; import { type DataTestId, type StylingProps, type WithChildren, type MaskingProps } from '@dynatrace/strato-components/core'; /** * @public */ export interface AppLinkProps extends WithChildren, StylingProps, DataTestId, MaskingProps { /** The ID of the app to which the link points. */ appId: string; /** ID of the app page to be launched. */ pageToken?: string; /** Function to handle click events on the AppLink. */ onClick?: (event: ReactMouseEvent) => void; } /** * `AppLink` renders a link that points to the specified application. * @public */ export declare const AppLink: (props: AppLinkProps & import("react").RefAttributes) => React.ReactElement | null;