import { SetState, ImmerScope, ProxyObjectState, ProxyArrayState, ES5ObjectState, ES5ArrayState, MapState, DRAFT_STATE } from "../internal"; export declare type Objectish = AnyObject | AnyArray | AnyMap | AnySet; export declare type ObjectishNoSet = AnyObject | AnyArray | AnyMap; export declare type AnyObject = { [key: string]: any; }; export declare type AnyArray = Array; export declare type AnySet = Set; export declare type AnyMap = Map; export declare const enum Archtype { Object = 0, Array = 1, Map = 2, Set = 3 } export declare const enum ProxyType { ProxyObject = 0, ProxyArray = 1, Map = 2, Set = 3, ES5Object = 4, ES5Array = 5 } export interface ImmerBaseState { parent_?: ImmerState; scope_: ImmerScope; modified_: boolean; finalized_: boolean; isManual_: boolean; } export declare type ImmerState = ProxyObjectState | ProxyArrayState | ES5ObjectState | ES5ArrayState | MapState | SetState; export declare type Drafted = { [DRAFT_STATE]: T; } & Base; //# sourceMappingURL=types-internal.d.ts.map