import { WorkspaceInvitation } from "../../interfaces/models/Workspace"; export interface FetchWorkspaceInvitesProps { workspaceId: string; } export interface FetchWorkspaceInvitesResponse { data: WorkspaceInvitation[]; } /** * List the LIVE pending invites a workspace has ISSUED (`status='pending' AND * expiresAt > now`). Requires the `invite` capability (or owner). Returned in * full — this list is deliberately unpaginated. * * Not to be confused with `useFetchMyWorkspaceInvites`, which lists the invites * addressed TO the signed-in user across all workspaces. */ declare function useFetchWorkspaceInvites(): (props: FetchWorkspaceInvitesProps) => Promise; export default useFetchWorkspaceInvites;