/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
export declare class IMEImpl {
    private readonly _onDidChange;
    readonly onDidChange: import("./event.mjs").Event<void>;
    private _enabled;
    get enabled(): boolean;
    /**
     * Enable IME
     */
    enable(): void;
    /**
     * Disable IME
     */
    disable(): void;
}
export declare const IME: IMEImpl;
