/** * 🚀 Quick Start Example - Copy and modify this for your project * * This example shows the most common setup patterns for the logstack. * Choose the configuration that matches your needs. */ import { Config } from '../types/config'; declare const basicConfig: Config; declare const environmentConfig: () => Config; declare const createServiceConfig: (serviceName: string) => Config; declare const existingLogsConfig: Config; /** * Option 1: Basic initialization */ declare function initBasicService(): Promise; /** * Option 2: Environment-based initialization */ declare function initEnvironmentService(): Promise; /** * Option 3: Multi-service initialization */ declare function initMultiService(): Promise; /** * Option 4: Existing logs initialization */ declare function initExistingLogsService(): Promise; /** * Test your configuration */ declare function testConfiguration(config: Config): Promise; export { basicConfig, environmentConfig, createServiceConfig, existingLogsConfig, initBasicService, initEnvironmentService, initMultiService, initExistingLogsService, testConfiguration };