export interface AcceptWorkspaceInviteProps { inviteId: string; } export interface AcceptWorkspaceInviteResponse { success: boolean; workspaceId: string; } /** * Accept an invitation — identity-matched to the bearer-token user + verified * email required. Non-secret id. Idempotent when already a member/owner. */ declare function useAcceptWorkspaceInvite(): (props: AcceptWorkspaceInviteProps) => Promise; export default useAcceptWorkspaceInvite;