import { ElementRef, OnInit } from '@angular/core'; import { SbbDialogHelperService } from '../dialog/dialog-helper.service'; import { SbbDialogRef } from '../dialog/dialog-ref'; import { SbbDialog } from '../dialog/dialog.service'; /** * Container for the bottom action buttons in a dialog. * Stays fixed to the bottom when scrolling. */ export declare class SbbDialogFooter implements OnInit { private _dialogRef; private _elementRef; private _dialog; private _dialogHelperService; /** Types of alignment. */ alignment: 'left' | 'center' | 'right'; constructor(_dialogRef: SbbDialogRef, _elementRef: ElementRef, _dialog: SbbDialog, _dialogHelperService: SbbDialogHelperService); ngOnInit(): void; static ngAcceptInputType_alignment: 'left' | 'center' | 'right' | string | null | undefined; }