import { StormError } from './StormError';
import { ErrorCode } from './ErrorCode';
import { StatusCode } from './StatusCode';
import { HTTPMethod } from './HTTPMethod';
interface INotImplementedErrorOptions {
    method: string;
}
export declare class NotImplementedError extends StormError<INotImplementedErrorOptions> {
    constructor(method: HTTPMethod);
    getMessage(): string;
    getCode(): ErrorCode;
    getHTTPCode(): StatusCode;
    getLocaleCode(): string;
    getLocaleParameters(): Record<string, string>;
}
export {};
