import { QueryInterfacesArgs } from "@rcsb/rcsb-api-tools/lib/RcsbGraphQL/Types/Yosemite/GqlTypes";
export interface InterfaceInstanceInterface {
    rcsbId: string;
    assemblyId: string;
    interfaceId: string;
    asymIds: [string, string];
    operatorIds: [Array<Array<string>>, Array<Array<string>>];
}
export declare class InterfaceInstanceCollector {
    private readonly rcsbFvQuery;
    collect(requestConfig: QueryInterfacesArgs): Promise<Array<InterfaceInstanceInterface>>;
}
