import { TTable, MysqlCountParams, TSentence, CountRes } from '../index';
declare function fetchCount(table: TTable, params: MysqlCountParams): Promise<CountRes>;
declare function fetchCount(table: TTable, params: MysqlCountParams, query: TSentence): Promise<string>;
export default fetchCount;
