export * from './base-immutable/base-immutable'; export * from './equality/equality'; export * from './keyed-array/keyed-array'; export * from './named-array/named-array'; export * from './simple-array/simple-array'; export * from './utils/utils'; export interface Instance { valueOf(): ValueType; toJS(): JSType; toJSON(): JSType; equals(other: Instance | undefined): boolean; } export interface Class { fromJS(properties: JSType, context?: any): Instance; new (properties: ValueType): any; } //# sourceMappingURL=index.d.ts.map