import * as BigQuery from '@google-cloud/bigquery'; import * as PubSub from '@google-cloud/pubsub'; declare type DummyCloud = { bigquery: typeof BigQuery; pubsub: typeof PubSub; }; declare type DummyGoogle = { cloud: DummyCloud; }; export declare function createGoogle(): DummyGoogle; export {};