import type { DidReceiveGlobalSettings } from "../../api";
import type { JsonObject } from "../json";
import { Event } from "./event";
/**
 * Provides event information for when the plugin received the global settings.
 */
export declare class DidReceiveGlobalSettingsEvent<T extends JsonObject> extends Event<DidReceiveGlobalSettings<T>> {
    /**
     * Settings associated with the event.
     */
    readonly settings: T;
    /**
     * Initializes a new instance of the {@link DidReceiveGlobalSettingsEvent} class.
     * @param source Source of the event, i.e. the original message from Stream Deck.
     */
    constructor(source: DidReceiveGlobalSettings<T>);
}
