import { SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser'; import { CTYInspectService } from './inspect'; import * as i0 from "@angular/core"; export type SafeType = 'html' | 'style' | 'script' | 'url' | 'resource'; export type SafeFnType = 'bypassSecurityTrustHtml' | 'bypassSecurityTrustStyle' | 'bypassSecurityTrustScript' | 'bypassSecurityTrustUrl' | 'bypassSecurityTrustResourceUrl'; export declare class CTYUtilService { private ctyInspectService; private sanitizer; private statusBar; constructor(ctyInspectService: CTYInspectService); BypassSecurityTrust(val: string, type?: SafeType): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl; FormatLocalPreview(value: string): any; ToggleStatusBar(enable: boolean): void; CheckAppPermission(permission: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }