import { HttpHeaders } from "@angular/common/http"; export declare class Api { static VIEWER_APP: string; static SIGNATURE_APP: string; static ANNOTATION_APP: string; static SEARCH_APP: string; static EDITOR_APP: string; static COMPARISON_APP: string; static CONVERSION_APP: string; static METADATA_APP: string; static PARSER_APP: string; static DEFAULT_API_ENDPOINT: string; static LOAD_FILE_TREE: string; static LOAD_CONFIG: string; static LOAD_DOCUMENT_DESCRIPTION: string; static LOAD_DOCUMENT_PAGE: string; static LOAD_DOCUMENT_PROPERTIES: string; static LOAD_DOCUMENT_PROPERTIES_NAMES: string; static SAVE_PROPERTY: string; static REMOVE_PROPERTY: string; static ROTATE_DOCUMENT_PAGE: string; static UPLOAD_DOCUMENTS: string; static DOWNLOAD_DOCUMENTS: string; static DOWNLOAD_ANNOTATED: string; static LOAD_PRINT: string; static LOAD_PRINT_PDF: string; static LOAD_THUMBNAILS: string; static LOAD_FORMATS: string; static SAVE_FILE: string; static CREATE_FILE: string; static COMPARE_FILES: string; static CONVERT_FILE: string; static DELETE_SIGNATURE_FILE: string; static REMOVE_FROM_INDEX: string; static GET_FILE_STATUS: string; static SAVE_OPTICAL_CODE: string; static SAVE_TEXT: string; static SAVE_IMAGE: string; static SAVE_STAMP: string; static SIGN: string; static DOWNLOAD_SIGNED: string; static LOAD_SIGNATURE_IMAGE: string; static ANNOTATE: string; static SEARCH: string; static PARSE: string; static ADD_FILES_TO_INDEX: string; static CLEAN_METADATA: string; static EXPORT_METADATA: string; static httpOptionsJson: { headers: HttpHeaders; }; static httpOptionsJsonResponseTypeBlob: { headers: HttpHeaders; responseType: "blob"; }; } export declare class ConfigService { private _apiEndpoint; constructor(); apiEndpoint: string; getConfigEndpoint(app: any): string; getViewerApiEndpoint(): string; getEditorApiEndpoint(): string; getComparisonApiEndpoint(): string; getConversionApiEndpoint(): string; getMetadataApiEndpoint(): string; getSignatureApiEndpoint(): string; getAnnotationApiEndpoint(): string; getSearchApiEndpoint(): string; getParserApiEndpoint(): string; }