import type { QueryTemplateFunction } from "./index.js"; export type BigQueryConfig = { type: "bigquery"; apiKey?: string; keyFilename?: string; keyFile?: string; projectId?: string; dataset?: string; }; export default function bigquery({ type, dataset, ...options }: BigQueryConfig): QueryTemplateFunction; export declare function replacer(this: { [key: string]: unknown; }, key: string, value: unknown): unknown;