import { DatabaseError } from './database-error.js';
/**
 * Raised when a unique index sees the same field value more than once.
 */
export declare class DuplicateIndexError extends DatabaseError {
    constructor(key: string, field: string, value: any);
}
