import React from 'react';
import { type PropsWithChildren } from 'react';
interface UserPresence {
    isAway: boolean;
}
export declare const UserPresenceContext: React.Context<UserPresence>;
export declare const UserPresenceProvider: ({ children }: PropsWithChildren) => React.JSX.Element;
export declare const useUserPresence: () => UserPresence;
export {};
