import { ActionBehavior } from '../actionbehavior'; /** * Logs an event through the currently configured analytics provider(s). * * Note: you must have added an analytics provider to the Hierarchy in one of your components for this behavior to have any effect. * * @zbehavior * @zicon analytics * @zgroup Actions */ export declare class LogAnalyticsEvent extends ActionBehavior { /** @zprop */ name: string; /** @zprop */ params: any; /** @zprop */ perform(): void; }