/**
 * Microsoft Teams Shortcuts
 *
 * https://support.office.com/en-us/article/keyboard-shortcuts-for-microsoft-teams-2e8e2a70-e8d8-4a19-949b-4c36dd5292d2#bkmk_mac_calling
 */
export declare class MeetingsAndCalls {
    /**
     * Accept the incoming video call
     */
    static accept(reactivate?: boolean): Promise<string>;
    /**
     * Tell MS Teams to mute
     */
    static decline(reactivate?: boolean): Promise<string>;
    /**
     * Tell MS Teams to mute
     */
    static mute(reactivate?: boolean): Promise<string>;
    /**
     * Tell MS Teams to turn camera on or off
     */
    static camera(reactivate?: boolean): Promise<string>;
    /**
     * Run the Apple script
     * @param keystroke
     */
    private static runScript;
}
