import { MultipleDocumentPropertyCollectorInterface } from "./DataCollectorInterface"; export interface InstanceSequenceInterface { rcsbId: string; sequence: string; } export declare class MultipleInstanceSequencesCollector implements MultipleDocumentPropertyCollectorInterface<"instance_ids", InstanceSequenceInterface> { private readonly rcsbFvQuery; collect(requestConfig: { instance_ids: string[]; }): Promise; }