import { WorkspaceInvitation } from "../../interfaces/models/Workspace"; export interface FetchMyWorkspaceInvitesResponse { data: WorkspaceInvitation[]; } /** * The bearer-token user's LIVE pending invites (`status='pending' AND expiresAt * > now`), matched by `userId` from the token. Surfacing is NOT * verification-gated (the verified check applies when the user ACTS on an * invite — accept or decline). */ declare function useFetchMyWorkspaceInvites(): () => Promise; export default useFetchMyWorkspaceInvites;