import { HTMLAttributes } from 'react';

interface InvitePopupProps {
    readonly loading: boolean;
    readonly onCancel: () => void;
    readonly onSendInvite: (emails: string[]) => void;
}
declare const InvitePopup: ({ onCancel, onSendInvite, loading, ...rest }: InvitePopupProps & HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
export default InvitePopup;
