import { InAppMessage } from "../models/in-app-messages/in-app-message"; /** * Logs that the user clicked the given in-app message. * * @param inAppMessage - The in-app message that was clicked. * * @returns Resolves to a boolean that indicates whether the click event was successfully enqueued. Resolves to undefined * if the SDK is not initialized. */ export declare function logInAppMessageClick(inAppMessage: InAppMessage): Promise;