/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the Notification type
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/notification/types)).
 */
export type Type = {
    /**
     * Specifies the styling of the Notification.
     *
     * The possible values are:
     * * `none` (Default)&mdash;Applies no predefined styling.
     * * `base`&mdash;Applies base styling.
     * * `primary`&mdash;Applies primary styling.
     * * `secondary`&mdash;Applies secondary styling.
     * * `tertiary`&mdash;Applies tertiary styling.
     * * `info`&mdash;Applies info styling.
     * * `success`&mdash;Applies success styling.
     * * `warning`&mdash;Applies warning styling.
     * * `error`&mdash;Applies error styling.
     * * `inverse`&mdash;Applies inverse styling.
     */
    style?: 'none' | 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'inverse';
    /**
     * Specifies whether to render an icon next to the Notification content. Defaults to `false`.
     */
    icon?: boolean;
};
