import { EventEmitter } from '../../stencil-public-runtime'; /** * @slot occurred - Slot that will display when the provided event has been recorded with the experience * @slot waiting - Slot that will display when the provided event has not been recorded yet */ export declare class DxpDetectEvent { /** * The key for the dxp-event to check against the experience recorded events */ dxpEvent: string; /** * @state Used to conditionally display slots depending on whether provided event has been recorded */ private eventTriggered; /** * @state Used to conditionally display component depending if dxp-event property is valid */ private isValid; /** * Fires off when the defined event is found to have occurred */ eventChanged: EventEmitter; private pattern?; private occuredElement; private waitingElement?; componentWillLoad(): void; private checkExperience; render(): any; disconnectedCallback(): void; }