import type { QueryTemplateFunction } from "./index.js"; export type DuckDBConfig = { type: "duckdb"; path?: string; options?: { [key: string]: string; }; }; export default function duckdb({ path, options }: DuckDBConfig): QueryTemplateFunction;