/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { DialogRef } from './models/dialog-ref'; import { DialogActionsComponent } from './dialog-actions.component'; import { DialogTitleBarComponent } from './dialog-titlebar.component'; import * as i0 from "@angular/core"; /** * Serves as the base class for a component provided as Dialog content through the `content` property. * ([See example.](https://www.telerik.com/kendo-angular-ui/components/dialogs/dialog/service#single-component-rendering)). * */ export declare class DialogContentBase { dialog: DialogRef; /** * @hidden */ dialogTitleBar: DialogTitleBarComponent; /** * @hidden */ dialogActions: DialogActionsComponent; constructor(dialog: DialogRef); /** * @hidden */ ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }