import { JSONSchema, ValidateFunction } from '../validation'; /** * Color3 is a data type that describes a color using R, G and B components * @alpha */ export type Color3 = { r: number; g: number; b: number; }; /** * Color3 * @alpha */ export declare namespace Color3 { const schema: JSONSchema; const validate: ValidateFunction; } /** * @alpha */ export type WearableId = string; /** * EthAddress is a data type that describes an Ethereum address * @public */ export type EthAddress = string; /** * EthAddress * @public */ export declare namespace EthAddress { const schema: JSONSchema; const validate: ValidateFunction; } /** * IPFSv2 is a data type that describes an IPFS v2 hash * @public */ export type IPFSv2 = string; /** * IPFSv2 * @public */ export declare namespace IPFSv2 { const schema: JSONSchema; const validate: ValidateFunction; } /** * @public */ export type IPFSv1 = string; /** * IPFSv1 * @public */ export declare namespace IPFSv1 { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=index.d.ts.map