import { Name } from './generalTypes';
export declare type Sql = (sqlStr: string, args?: {
    [key: string]: Name;
}) => string | string[];
