/** * @license * Copyright Health Catalyst All Rights Reserved. * * Use of this source code is governed by an Apache-2.0 license that can be * found in the LICENSE file at https://raw.githubusercontent.com/HealthCatalyst/Fabric.Cashmere/dev/LICENSE */ import { OnChanges, OnInit, SimpleChanges, ElementRef } from '@angular/core'; import { DialogService } from './dialog.service'; import { HcDialogRef } from './dialog-ref'; /** * Button that will close the current dialog. */ export declare class DialogCloseDirective implements OnInit, OnChanges { dialogRef: HcDialogRef; private _elementRef; private _dialog; /** Screenreader label for the button. */ ariaLabel: string; /** Dialog close input. */ dialogResult: any; _hcDialogClose: any; constructor(dialogRef: HcDialogRef, _elementRef: ElementRef, _dialog: DialogService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; } /** * Title of a dialog element. Stays fixed to the top of the dialog when scrolling. */ export declare class DialogTitleDirective implements OnInit { private _dialogRef; private _elementRef; private _dialog; id: string; constructor(_dialogRef: HcDialogRef, _elementRef: ElementRef, _dialog: DialogService); ngOnInit(): void; } /** * Scrollable content container of a dialog. */ export declare class DialogContentDirective { } /** * Container for the bottom action buttons in a dialog. * Stays fixed to the bottom when scrolling. */ export declare class DialogActionsDirective { }