/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ButtonFillMode, ButtonThemeColor } from "@progress/kendo-angular-buttons";
/**
 * The settings for the Dialog actions when the Dialog is opened through `DialogService`
 * ([see example]({% slug api_dialog_dialogservice %}#toc-open)).
 */
export declare class DialogAction {
    /**
     * The text of the action button.
     */
    text: string;
    /**
     * Determines the theme color of the action button. The theme color will be applied as a background and border color while also amending the text color accordingly.
     */
    themeColor?: ButtonThemeColor;
    /**
     * Specifies the background and border styles of the action button.
     */
    fillMode?: ButtonFillMode;
    /**
     * Sets the CSS classes that will be rendered on the action button.
     * Supports the union type of values that NgClass accepts [ngClass](link:site.data.urls.angular['ngclassapi']).
     */
    cssClass?: any;
}
