import type { SchemaMeta } from "@lemmaoracle/spec"; export type SchemaDef = Readonly<{ id: string; normalize: (raw: Raw) => Norm; }>; /** * Default IPFS gateway for resolving ipfs:// URLs. * Callers can override by providing a custom fetcher that handles IPFS natively. */ export declare const IPFS_GATEWAY = "https://ipfs.io/ipfs/"; export declare const define: (schemaMeta: SchemaMeta) => Promise>; export declare const getSchemaById: (schemaId: string) => SchemaDef | undefined; //# sourceMappingURL=schema.d.ts.map