import type { Molecule } from 'openchemlib'; interface PossibleHint { idCode: string; message: string; anyMatches?: string[]; remarks?: string; } export interface NMRHint { message: string; hash: number; } export interface GetNMRHintsOptions { possibleHints?: PossibleHint[]; } /** * * @param correct * @param proposed * @param options * @returns */ export declare function getNMRHints(correct: Molecule, proposed: Molecule, options?: GetNMRHintsOptions): NMRHint[]; export {}; //# sourceMappingURL=getNMRHints.d.ts.map