import type { Action } from "@vertigis/arcgis-extensions/support/Action";
import type { ServiceModelProperties } from "../common/ServiceModelProperties.js";
/**
 * Global configuration for an application.
 */
export interface ApplicationModelProperties extends ServiceModelProperties {
    /**
     * Action to be triggered when viewer initialization is complete.
     */
    onInitialized?: Action;
    /**
     * Action to be triggered on viewer initialization before layout selection.
     */
    onInitializing?: Action;
}
