import { SetAwayStatusCommandArguments } from './types';
export declare const userStatus: {
    /**
     * Sets the away status of the user to a certain status.
     *
     * @param setAwayStatusCommandArguments the status to which the core will set the user
     * status.
     * Refer to {@link SetAwayStatusCommandArguments} to understand the argument structure.
     */
    setAwayStatus: (setAwayStatusCommandArguments: SetAwayStatusCommandArguments) => void;
};
