import { Property } from './property'; interface ExposePropertyValueByName { exposePropertyValueByName(name: string): number[]; } export declare class Chemical implements ExposePropertyValueByName { name: string; formula: string; properties: Property[]; constructor(name: string, formula: string, props: Property[]); exposePropertyValueByName(name: string): number[]; } export {};