export declare const QUERY_RECT = "\n SELECT\n *\n FROM\n mapBlock\n WHERE\n mapId = ? and\n x >= ? and\n y >= ? and\n x <= ? and\n y <= ?\n"; export declare const INSERT_BLOCK = "\n INSERT INTO\n mapBlock\n SET ?\n"; export declare const DELETE_BLOCK = "\n DELETE FROM\n mapBlock\n WHERE\n mapId = ? &&\n x = ? &&\n y = ?\n"; export declare const UPDATE_BLOCK = "\n UPDATE\n mapBlock\n SET\n resData = ?\n WHERE\n mapId = ? &&\n x = ? &&\n y = ?\n"; export declare const QUERY_BLOCK = "\n SELECT\n mapId,\n x,\n y,\n resData\n FROM\n mapBlock\n WHERE\n mapId = ? &&\n x = ? &&\n y = ?\n LIMIT 1\n"; //# sourceMappingURL=index.d.ts.map