import { InterfaceInstanceInterface } from "../../RcsbCollectTools/DataCollectors/InterfaceInstanceCollector";
export declare class InterfaceInstanceTranslate {
    private readonly rawData;
    private readonly instances;
    private readonly operatorsIds;
    constructor(data: Array<InterfaceInstanceInterface>);
    getInstances(rcsbId: string): [string, string] | undefined;
    getOperatorIds(rcsbId: string): [Array<Array<string>>, Array<Array<string>>] | undefined;
    getRawData(): Array<InterfaceInstanceInterface>;
}
