type RuntimeMetricOptions = { name?: string; operation?: string; }; declare function createRuntimeMetricEvent(elapsedMs: number, options: RuntimeMetricOptions | undefined, success: boolean, rowCount: number): { elapsedMs: number; name: string | undefined; operation: string | undefined; rowCount: number; success: boolean; }; declare function runtimeQueryErrorCode(error: unknown): string; declare function summarizeSql(sql: string): string; declare function sqlStatementKind(sql: string): string; declare function hashText(value: string): string; export { createRuntimeMetricEvent, hashText, runtimeQueryErrorCode, sqlStatementKind, summarizeSql, }; //# sourceMappingURL=sql.d.ts.map