import { z } from 'zod'; /** @see {@link INDEXED_COLLECTION_BUILT_IN_OBJECTS} */ declare const INDEXED_COLLECTION_BUILT_IN_OBJECTS_NAMES: readonly ["Array", "Int8Array", "Uint8Array", "Uint8ClampedArray", "Int16Array", "Uint16Array", "Int32Array", "Uint32Array", "BigInt64Array", "BigUint64Array", "Float32Array", "Float64Array"]; /** @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects#indexed_collections} */ declare const INDEXED_COLLECTION_BUILT_IN_OBJECTS: { readonly Array: ArrayConstructor; readonly Int8Array: Int8ArrayConstructor; readonly Uint8Array: Uint8ArrayConstructor; readonly Uint8ClampedArray: Uint8ClampedArrayConstructor; readonly Int16Array: Int16ArrayConstructor; readonly Uint16Array: Uint16ArrayConstructor; readonly Int32Array: Int32ArrayConstructor; readonly Uint32Array: Uint32ArrayConstructor; readonly BigInt64Array: BigInt64ArrayConstructor; readonly BigUint64Array: BigUint64ArrayConstructor; readonly Float32Array: Float32ArrayConstructor; readonly Float64Array: Float64ArrayConstructor; }; type IndexedCollectionBuiltInObjectName = keyof typeof INDEXED_COLLECTION_BUILT_IN_OBJECTS; type IndexedCollectionBuiltInObject = (typeof INDEXED_COLLECTION_BUILT_IN_OBJECTS)[IndexedCollectionBuiltInObjectName]; declare const INDEXED_COLLECTION_BUILT_IN_OBJECT_NAME_SCHEMA: z.ZodEnum<["Array", "Int8Array", "Uint8Array", "Uint8ClampedArray", "Int16Array", "Uint16Array", "Int32Array", "Uint32Array", "BigInt64Array", "BigUint64Array", "Float32Array", "Float64Array"]>; declare const INDEXED_COLLECTION_BUILT_IN_OBJECTS_SCHEMAS: { readonly Array: z.ZodType; readonly Int8Array: z.ZodType; readonly Uint8Array: z.ZodType; readonly Uint8ClampedArray: z.ZodType; readonly Int16Array: z.ZodType; readonly Uint16Array: z.ZodType; readonly Int32Array: z.ZodType; readonly Uint32Array: z.ZodType; readonly BigInt64Array: z.ZodType; readonly BigUint64Array: z.ZodType; readonly Float32Array: z.ZodType; readonly Float64Array: z.ZodType; }; export { INDEXED_COLLECTION_BUILT_IN_OBJECTS, INDEXED_COLLECTION_BUILT_IN_OBJECTS_NAMES, INDEXED_COLLECTION_BUILT_IN_OBJECTS_SCHEMAS, INDEXED_COLLECTION_BUILT_IN_OBJECT_NAME_SCHEMA, IndexedCollectionBuiltInObject, IndexedCollectionBuiltInObjectName };