import type { QueryTemplateFunction } from "./index.js"; export type PostgresConfig = { type: "postgres"; host?: string; port?: string | number; username?: string; password?: string; database?: string; ssl?: boolean; }; export default function postgres(options: PostgresConfig): QueryTemplateFunction;