/** * 🌩️ AWS S3 Testing - Cron Log Service * * This example demonstrates how to test the logstack with AWS S3 storage. * Make sure you have AWS credentials configured before running this test. */ import { Config } from '../types/config'; declare const awsConfig: Config; declare function validateAWSCredentials(): Promise; declare function testAWSConnection(): Promise; declare function testS3FileUpload(): Promise; declare function testMultipleS3Environments(): Promise; declare function testAWSPerformance(): Promise; declare function runAWSTests(): Promise; export { awsConfig, validateAWSCredentials, testAWSConnection, testS3FileUpload, testMultipleS3Environments, testAWSPerformance, runAWSTests };