import BasePartyJoinRequest from './BasePartyJoinRequest';
import type ClientUser from '../user/ClientUser';
import type Friend from '../friend/Friend';
import type Client from '../../Client';
/**
 * Represents an outgoing party join request
 */
declare class SentPartyJoinRequest extends BasePartyJoinRequest {
    receiver: Friend;
    sender: ClientUser;
    /**
   * @param client The main client
   * @param sender The user who requested to join the party
   * @param receiver The user who received the join request
   * @param data The party confirmation data
   */
    constructor(client: Client, sender: ClientUser, receiver: Friend, data: any);
}
export default SentPartyJoinRequest;
