/*---------------------------------------------------------------------------------------------
 *  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 enum KeyboardSupport {
    Always = 0,
    FullScreen = 1,
    None = 2
}
/**
 * Browser feature we can support in current platform, browser and environment.
 */
export declare const BrowserFeatures: {
    clipboard: {
        writeText: true;
        readText: boolean;
    };
    keyboard: KeyboardSupport;
    touch: boolean;
    pointerEvents: boolean;
};
