/**
 * Simple test function with no dependencies to verify ESM/CJS interop
 */
export declare function testConnection(): {
    success: boolean;
    message: string;
    timestamp: string;
};
/**
 * Async test function to verify async imports work
 */
export declare function testAsyncConnection(): Promise<{
    success: boolean;
    message: string;
}>;
