import { IComponentMetrics, IFunnelMetrics, IPerformanceMetrics } from './interfaces'; export declare function setFunnelMetrics(funnelMetrics: IFunnelMetrics): void; export declare function setPerformanceMetrics(performanceMetrics: IPerformanceMetrics): void; export declare function setComponentMetrics(componentMetrics: IComponentMetrics): void; /** * This is a stub implementation of the FunnelMetrics interface and will be replaced during * build time with the actual implementation. */ export declare let FunnelMetrics: IFunnelMetrics; /** * This is a stub implementation of the PerformanceMetrics interface and will be replaced during * build time with the actual implementation. */ export declare let PerformanceMetrics: IPerformanceMetrics; export declare let ComponentMetrics: IComponentMetrics;