/// import * as bigquery from '@google-cloud/bigquery'; import * as pubsub from '@google-cloud/pubsub'; import * as gcs from '@google-cloud/storage'; import * as contrib from '@posthog/plugin-contrib'; import * as scaffold from '@posthog/plugin-scaffold'; import * as AWS from 'aws-sdk'; import crypto from 'crypto'; import * as genericPool from 'generic-pool'; import * as jsonwebtoken from 'jsonwebtoken'; import fetch from 'node-fetch'; import * as pg from 'pg'; import snowflake from 'snowflake-sdk'; import { PassThrough } from 'stream'; import * as url from 'url'; import * as zlib from 'zlib'; export declare const imports: { '@google-cloud/bigquery': typeof bigquery; '@google-cloud/pubsub': typeof pubsub; '@google-cloud/storage': typeof gcs; '@posthog/plugin-contrib': typeof contrib; '@posthog/plugin-scaffold': typeof scaffold; 'aws-sdk': typeof AWS; 'generic-pool': typeof genericPool; 'node-fetch': typeof fetch; 'snowflake-sdk': typeof snowflake; crypto: typeof crypto; jsonwebtoken: typeof jsonwebtoken; faker: Faker.FakerStatic; pg: typeof pg; stream: { PassThrough: typeof PassThrough; }; url: typeof url; zlib: typeof zlib; 'test-utils/write-to-file'?: { console: { log: (...args: any[]) => void; reset(): void; read(): any[]; }; } | undefined; };