import { Auth, AuthTombstoneContext, SocketContext, Socket } from "../authentication"; interface AuthContextActions extends Omit { } declare type SocketContextActions = Omit; export interface AuthContextValue extends Auth, Partial { } export interface SocketContextValue extends Socket, Partial { } export {};