import type { UnbanMemberResponse } from "../../interfaces/models/Space"; export interface UnbanMemberProps { spaceId: string; memberId: string; } declare function useUnbanMember(): (props: UnbanMemberProps) => Promise; export default useUnbanMember;