import { StormError } from './StormError'; import { ErrorCode } from './ErrorCode'; import { StatusCode } from './StatusCode'; export declare class DuplicateEntryError extends StormError { constructor(entity: string, name: string, property?: string); getMessage(): string; getCode(): ErrorCode; getHTTPCode(): StatusCode; getLocaleCode(): string; getLocaleParameters(): Record; }