/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { TemplateRef } from '@angular/core';
import { LocalizationService } from '@progress/kendo-angular-l10n';
import { BaseView } from './base-view';
import * as i0 from "@angular/core";
/**
* Represents the component that renders a **Custom** view in the AIPrompt.
*
* @example
* ```html
*
*
*
*
* Custom content here
*
* ```
*/
export declare class CustomViewComponent extends BaseView {
constructor(localization: LocalizationService);
/**
* Sets the content of the Custom view as a template reference.
*/
viewTemplate: TemplateRef;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}