import { ProfileUser, AuthTokens } from '../ProfileStorageManager'; export interface RemoteSLODeps { tokens: AuthTokens | null; bridgeUrl: string | undefined; logout: (options?: { authoritative?: boolean; }) => void; setActiveId: (id: string | null) => void; setUser: (user: ProfileUser | null) => void; setTokens: (tokens: AuthTokens | null) => void; setWorkspaceTokenLocal: (token: string | null) => void; clearAccounts: () => void; } export declare function useRemoteSLO({ tokens, bridgeUrl, logout, setActiveId, setUser, setTokens, setWorkspaceTokenLocal, clearAccounts, }: RemoteSLODeps): void; //# sourceMappingURL=useRemoteSLO.d.ts.map