import { MatDialog } from '@angular/material/dialog'; import { Observable } from 'rxjs'; import { ScDialogData } from '../../models'; export declare class ScDialogService { private _matDialog; constructor(_matDialog: MatDialog); fileViewer(title: string, type: string, src: File | string): Observable; confirm(message: string): Observable; info(title: string, text: string, type?: number): Observable; fullscreen(title: string, content: any): Observable; succsess(successMessage: { title: string; message: string; }): Observable; error(errorMessage: { title: string; errorList: string[]; }, type?: 'error' | 'warning'): Observable; imagePreviewer(images: any[], startIndex?: number): Observable; googleMaps(title: string, long: number, lat: number): Observable; generic(config: ScDialogData): Observable; } //# sourceMappingURL=sc-dialog.service.d.ts.map