/** * AI Guard SDK - Usage Examples * * Demonstrates how to integrate and use the SDK in different scenarios. */ /** * Example 1: Basic SDK initialization and scanning */ export declare function example1_basicScanning(): Promise; /** * Example 2: Global SDK singleton with configuration */ export declare function example2_globalSDK(): Promise; /** * Example 3: OpenAI client wrapping */ export declare function example3_openAIIntegration(): Promise; /** * Example 4: Sampling and performance */ export declare function example4_sampling(): Promise; /** * Example 5: Statistics and diagnostics */ export declare function example5_statistics(): Promise; /** * Example 6: Enable/disable toggling */ export declare function example6_toggle(): Promise; /** * Run all examples */ export declare function runAllExamples(): Promise;