import React from 'react'; import { Invitation } from '../../types'; interface InvitationListProps { organizationId: string; onInviteClick?: () => void; showInviteButton?: boolean; canManageInvitations?: boolean; onInvitationCancelled?: (invitation: Invitation) => void; onInvitationResent?: (invitation: Invitation) => void; /** Frontend URL for the resend invitation link. Defaults to window.location.origin */ frontendUrl?: string; } export declare const InvitationList: React.FC; export {};