export declare type Address = string; export declare type AddressTo = Record; export declare type Mutable = { -readonly [P in keyof T]: T[P]; }; export declare type Nullable = T | null; export declare type Nullish = Nullable | undefined; export declare type Primitive = number | string | boolean | bigint | symbol | null | undefined;