import { CONSTANT_OPTIONS } from './Collection'; declare class Object4D { object: any; constructor(...keysValues: Array); getOptionHandler: (option: CONSTANT_OPTIONS) => ((sObject: any, sOther: any) => boolean) | null; equal: (obj: Object4D, option?: any) => boolean; toJSON(): any; } export default Object4D;