/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { RippleContainerDirective } from "./ripple-container.directive";
/**
 * Use the `KENDO_RIPPLE` utility array to add all `@progress/kendo-angular-ripple` related components and directives to a standalone Angular component.
 *
 * @example
 * ```typescript
 * import { Component } from '@angular/core';
 * import { KENDO_RIPPLE } from '@progress/kendo-angular-ripple';
 * import { KENDO_BUTTON } from "@progress/kendo-angular-buttons";
 *
 * @Component({
 *   standalone: true,
 *   imports: [KENDO_RIPPLE, KENDO_BUTTON],
 *   template: `
 *      <div kendoRippleContainer>
 *          <button kendoButton>Ripple Button</button>
 *      </div>
 *   `,
 * })
 * export class AppComponent {}
 * ```
 */
export declare const KENDO_RIPPLE: readonly [typeof RippleContainerDirective];
