/** * Real-World Integration Examples for Agentic-Synth * * This file demonstrates practical integrations with popular * frameworks and tools for various use cases. */ /** * Express.js REST API for synthetic data generation */ export declare function expressAPIExample(): Promise; /** * Database seeding with Prisma ORM */ export declare function prismaSeedingExample(): Promise; /** * Generate test fixtures for Jest tests */ export declare function jestFixturesExample(): Promise; /** * Generate training data for TensorFlow.js models */ export declare function tensorflowTrainingExample(): Promise; /** * Generate mock data for GraphQL resolvers */ export declare function graphqlMockingExample(): Promise; /** * Cache generated data in Redis for distributed systems */ export declare function redisCachingExample(): Promise; /** * Generate and publish events to Kafka */ export declare function kafkaStreamingExample(): Promise; /** * Generate and bulk index documents in Elasticsearch */ export declare function elasticsearchIndexingExample(): Promise; /** * Next.js API route for data generation */ export declare function nextjsAPIRouteExample(): Promise; /** * Supabase database seeding and real-time subscriptions */ export declare function supabaseIntegrationExample(): Promise; export declare function runAllExamples(): Promise; //# sourceMappingURL=integration-examples.d.ts.map