/** * Returns the hose codes for all atoms in the molecule * @param {*} molecule * @param {object} [options={}] * @param {string[]} [options.atomLabels] * @param {number} [options.minSphereSize=0] * @param {number} [options.maxSphereSize=4] * @returns */ export function getHoseCodes(molecule: any, options?: { atomLabels?: string[] | undefined; minSphereSize?: number | undefined; maxSphereSize?: number | undefined; }): (string[] | undefined)[]; //# sourceMappingURL=getHoseCodes.d.ts.map