import { Connection } from 'mysql'; export declare function OpenConnection(config: any): Connection; export declare function GenerateInsert(table: any, data: {}): string; export declare function GenerateUpdate(table: any, data: {}, primaryKey: string): string; export declare function RunQuery(config: any, sql: any, parms: any, cb: (arg0: any) => void): void; export declare function RunQueryAsync(config: any, sql: string, parms?: any): Promise; export declare function InsertAsync(config: any, table: any, parms: any): Promise; export declare function UpdateAsync(config: any, table: any, parms: any, primaryKey: any): Promise;