//#region src/types.d.ts
/**
 * Represents any type (arrays, objects, primitives, etc.)
 * Maps to Swift `Any` and Kotlin `Any`
 */
type Any = any;
/**
 * Represents a dictionary/object with string keys and any values
 * Maps to Swift `[String: Any]` and Kotlin `WritableMap`
 */
type AnyObject = Record<string, any>;
//#endregion
export { Any, AnyObject };