/** * JavaScript library information. * @property version - library version. * @property supported - A boolean value that specifies whether library is supported. * @property loaded - A boolean value that specifies whether library is loaded. */ export declare class EndUserLibraryInfoJS { version: string; supported: boolean; loaded: boolean; constructor(); } /** * SignWeb library information. * @property version - library version. * @property supported - A boolean value that specifies whether library is supported. * @property loaded - A boolean value that specifies whether library is loaded. * @property isSignAgentSupported - A boolean value that specifies whether SignAgent is supported. * @property isWebExtensionSupported - A boolean value that specifies whether web extension is supported. * @property isNPAPISupported - A boolean value that specifies whether NPAPI is supported. * @property isActiveXSupported - A boolean value that specifies whether ActiveX is supported. * @property isWebExtensionInstalled - A boolean value that specifies whether web extension is installed. * @property isNativeLibraryNeedUpdate - A boolean value that specifies whether native library is need update. * @property nativeLibraryInstallURL - The URL of the native library installer. * @property > nativeLibraryInstallURLs - The array with URLs of the native library installer. Intended for operation systems that support more then 1 install package type, e.x. Linux: deb, rpm, tar. * @property nativeLibraryUpdateURL - The URL of the native library updater. * @property > nativeLibraryUpdateURLs - The array with URLs of the native library updater. Intended for operation systems that support more then 1 update package type, e.x. Linux: deb, rpm, tar. * @property webExtensionInstallURL - The URL of the web extension. * @property helpURL - The URL of the help. */ export declare class EndUserLibraryInfoSW { version: string; supported: boolean; loaded: boolean; isSignAgentSupported: boolean; isWebExtensionSupported: boolean; isNPAPISupported: boolean; isActiveXSupported: boolean; isWebExtensionInstalled: boolean; isNativeLibraryNeedUpdate: boolean; nativeLibraryInstallURL: string; nativeLibraryInstallURLs: Array; nativeLibraryUpdateURL: string; nativeLibraryUpdateURLs: Array; webExtensionInstallURL: string; helpURL: string; constructor(); }