export type AdminAcceptInvite = {
    /**
     * The user's email.
     */
    email: string;
    /**
     * The user's first name.
     */
    first_name: string;
    /**
     * The user's last name.
     */
    last_name: string;
};
export type AdminCreateInvite = {
    /**
     * The email of the user to invite.
     */
    email: string;
    /**
     * Key-value pairs of custom data.
     */
    metadata?: Record<string, unknown>;
};
//# sourceMappingURL=payloads.d.ts.map