import { type MouseEvent as ReactMouseEvent } from 'react'; /** * @internal * useAppLink hook that returns the click function needed for an AppLink. */ export declare function useAppLink({ appId, disabled, pageToken, }: { appId: string; disabled?: boolean; pageToken?: string; }): { /** OnClick handler to be used for AppLinks */ onClick: (event: ReactMouseEvent) => void; /** App link href */ href: string; };