import type { OrmRecord } from './types/orm-types.js'; export declare function isDbError(error: unknown): error is { code: string; message: string; }; export declare function isOrmRecord(value: unknown): value is OrmRecord; export declare function pluralize(word: string): string;