import type { ApplicationDidLaunch, ApplicationDidTerminate } from "../../api/index.js"; import { Event } from "./event.js"; /** * Provides information for events relating to an application. */ export declare class ApplicationEvent extends Event { /** * Monitored application that was launched/terminated. */ readonly application: string; /** * Initializes a new instance of the {@link ApplicationEvent} class. * @param source Source of the event, i.e. the original message from Stream Deck. */ constructor(source: T); }