import PartyMeta from './PartyMeta';
import type { PartySchema } from '../../../resources/structs';
import type ClientParty from './ClientParty';
/**
 * Represents the client's party meta
 */
declare class ClientPartyMeta extends PartyMeta {
    /**
     * The party
     */
    party: ClientParty;
    /**
     * @param party The party
     * @param schema The schema
     */
    constructor(party: ClientParty, schema: PartySchema);
    /**
     * Refreshes the member positions
     */
    refreshSquadAssignments(): string | undefined;
    updatePrivacy(): void;
}
export default ClientPartyMeta;
