/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PDFExportMarginComponent } from "./pdf-export-margin.component";
import { PDFExportTemplateDirective } from "./pdf-export-template.directive";
import { PDFExportComponent } from "./pdf-export.component";
/**
 * Use the `KENDO_PDFEXPORT` utility array to add all `@progress/kendo-angular-pdf-export`-related components and directives to a standalone Angular component.
 *
 * @example
 * ```typescript
 * import { Component } from '@angular/core';
 * import { KENDO_PDFEXPORT } from "@progress/kendo-angular-pdf-export";
 *
 * @Component({
 *   standalone: true,
 *   imports: [KENDO_PDFEXPORT],
 *   selector: 'my-app',
 *   template: `<kendo-pdf-export></kendo-pdf-export>`
 * })
 * export class AppComponent {}
 * ```
 */
export declare const KENDO_PDFEXPORT: readonly [typeof PDFExportComponent, typeof PDFExportMarginComponent, typeof PDFExportTemplateDirective];
