/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

export declare const IEncryptionMainService: import('../../instantiation/common/instantiation.mjs').ServiceIdentifier<IEncryptionMainService>;
export interface IEncryptionMainService extends ICommonEncryptionService {}
export interface ICommonEncryptionService {
	readonly _serviceBrand: undefined;
	encrypt(value: string): Promise<string>;
	decrypt(value: string): Promise<string>;
}
