import { HttpError } from '../HttpError.js';
export declare class ShaMismatchError extends HttpError {
    actual: string;
    expected: string;
    constructor(actual: string, expected: string, message?: string);
}
