export declare type ResultType = 'ROWS' | 'AFFECTED_COUNT'; export declare type PickByValue = Pick; export declare type GetReturning = { [K in ColumnName]: TableColumns[K]; }; export declare class GetDataType { private _; } export declare type QueryExecutorFn = (query: string, parameters: any[]) => Promise<{ rows: any[]; affectedCount: number; }>;