/** * @description Get the default databases of reactions for positive and negative mode * @param {Object} options - Options for database selection * @param {('ionization'|'resonance'|'reaction')[]} [options.kind=['ionization','resonance','reaction']] - The kind of database to be used * @param {('esi'|'ei')[]} [options.ionizations=['esi','ei']] - The ionization technique to be used * @param {('positive'|'negative')[]} [options.modes=['positive','negative']] - The ionization mode to be used * @param {string} [options.dwar] - The dwar file to use. Default will use an included mass fragmentation database * @returns */ export function getDatabase(options?: { kind?: ("reaction" | "resonance" | "ionization")[] | undefined; ionizations?: ("esi" | "ei")[] | undefined; modes?: ("positive" | "negative")[] | undefined; dwar?: string | undefined; }): any; //# sourceMappingURL=getDatabase.d.ts.map