/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the text of the labels that are shown within the Window.
 * Used primarily for localization.
 */
export interface WindowMessages {
    /**
     * Specifies the title of the close button.
     */
    closeTitle?: string;
    /**
     * Specifies the title of the restore button.
     */
    restoreTitle?: string;
    /**
     * Specifies the title of the maximize button.
     */
    maximizeTitle?: string;
    /**
     * Specifies the title of the minimize button.
     */
    minimizeTitle?: string;
}
