import { type Sql } from '../Sql.js'; import { type Input } from './Input.js'; export declare function callFunction(name: Sql, args: Array>): Sql; export declare const Functions: Functions; export type Functions = { [key: string]: (...args: Array>) => Sql; };