/**
 * Represents an error thrown because the friendship invitee does disabled friendship requests
 */
declare class InviteeFriendshipSettingsError extends Error {
    /**
     * The query which resulted in this error
     */
    query: string;
    /**
     * @param query The query which resulted in this error
     */
    constructor(query: string);
}
export default InviteeFriendshipSettingsError;
