/**
 * Represents any type (arrays, objects, primitives, etc.)
 * Maps to Swift `Any` and Kotlin `Any`
 */
export type Any = any;

/**
 * Represents a dictionary/object with string keys and any values
 * Maps to Swift `[String: Any]` and Kotlin `WritableMap`
 */
export type AnyObject = Record<string, any>;
