/**
 * Information about tapjacking.
 */
export interface TapjackingInfo {
    /**
     * Whether the SDK is currently clocking tapjacking.
     */
    readonly isTapjackingBlocked: boolean;
    /**
     * List of "bad" apps capable of performing tapjacking. A bad app is one
     * that has a treat index same or higher than "blockTapjackingSensitivity".
     */
    readonly tapjackingCapableApps: [string];
}
//# sourceMappingURL=TapjackingInfo.d.ts.map