import { ResponseParser } from "./responseParser.js";
import { SsdGetCapabilitiesResponse } from "../response/index.js";
export declare class CapabilitiesParsers implements ResponseParser<SsdGetCapabilitiesResponse> {
    private excludedGroups;
    constructor(excludedGroups: string[]);
    parse(response: any): Promise<SsdGetCapabilitiesResponse>;
}
