import { ASArray, ASObject } from '@awayfl/avm2'; export declare class Security extends ASObject { static classInitializer: any; static classSymbols: string[]; static instanceSymbols: string[]; constructor(); static REMOTE: string; static LOCAL_WITH_FILE: string; static LOCAL_WITH_NETWORK: string; static LOCAL_TRUSTED: string; static APPLICATION: string; private static _exactSettings; private static _sandboxType; static get exactSettings(): boolean; static set exactSettings(value: boolean); static get disableAVM1Loading(): boolean; static set disableAVM1Loading(value: boolean); static get sandboxType(): string; static get pageDomain(): string; static allowDomain(): void; static allowInsecureDomain(): void; static loadPolicyFile(url: string): void; static showSettings(panel?: string): void; static duplicateSandboxBridgeInputArguments(toplevel: ASObject, args: ASArray): ASArray; static duplicateSandboxBridgeOutputArgument(toplevel: ASObject, arg: any): any; } export declare const enum CrossDomainSWFLoadingWhitelistResult { /** * The requested domain belongs to the same domain as SWF's. */ OwnDomain = 0, /** * The requested domain belongs to the other domain than SWF's. */ Remote = 1, /** * The requested domain is not whitelisted. */ Failed = 2 } export interface ICrossDomainSWFLoadingWhitelist { addToSWFLoadingWhitelist(domain: string, insecure: boolean, ownDomain: boolean): any; checkDomainForSWFLoading(domain: string): CrossDomainSWFLoadingWhitelistResult; } //# sourceMappingURL=Security.d.ts.map