import { EventEmitter, OnChanges, SimpleChanges, OnInit } from '@angular/core'; import { UglaService } from '../../ugla.service'; export declare class PageFloatComponent implements OnInit, OnChanges { private ugla; show: boolean; title: string; cancelText: string; confirmText: string; confirmDisabled: boolean; size: string; cancelButton: EventEmitter; confirmButton: EventEmitter; theme: string; color: string; constructor(ugla: UglaService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; cancel(): void; confirm(): void; }