import { WorkspaceInvitation } from "../../interfaces/models/Workspace"; export interface ResendWorkspaceInviteProps { workspaceId: string; inviteId: string; } /** * Resend / refresh a pending invitation — valid on any `pending` invite, even * one past `expiresAt`; resets a 14-day expiry and resends the email. A * terminal invite (accepted/declined/revoked) → 409. Requires the `invite` * capability (or owner). Note this is a POST to `.../invites/:inviteId/resend`. */ declare function useResendWorkspaceInvite(): (props: ResendWorkspaceInviteProps) => Promise; export default useResendWorkspaceInvite;