/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PopupComponent } from "./popup.component"; /** * Use this utility array to access all `@progress/kendo-angular-popup`-related components and directives in a standalone Angular component. * * @example * ```typescript * import { Component } from '@angular/core'; * import { KENDO_POPUP } from '@progress/kendo-angular-popup'; * * @Component({ * selector: 'my-app', * standalone: true, * imports: [KENDO_POPUP], * template: `Popup content.` * }) * export class AppComponent {} * ``` */ export declare const KENDO_POPUP: readonly [typeof PopupComponent];