type AttributeConfig = { type: 'string' | 'number' | 'boolean' | 'date' | 'json'; required?: boolean; unique?: boolean; indexed?: boolean; }; type LinkConfig = { from: { entity: string; has: 'one' | 'many'; label: string; required?: boolean; onDelete?: 'cascade'; }; to: { entity: string; has: 'one' | 'many'; label: string; required?: boolean; onDelete?: 'cascade'; }; }; type Additions = { entities?: Record>; links?: Record; }; export declare function zodToSchema(additions: Additions): import("@instantdb/core").InstantSchemaDef, Record>, import("@instantdb/core").LinksDef, {}>; export {}; //# sourceMappingURL=schema.d.ts.map