import { Exception } from "../error.ts";
/**
 * This error indicates that the filename is too long to be resolved by the file
 * system.
 *
 * NOTE: This error has an HTTP-compatible code of `414`.
 */
export declare class FilenameTooLongError extends Exception {
    constructor(message: string, options?: ErrorOptions);
}
/**
 * This error indicates that the archive is corrupted or invalid.
 *
 * NOTE: This error has an HTTP-compatible code of `400`.
 */
export declare class CorruptedArchiveError extends Exception {
    constructor(message: string, options?: ErrorOptions);
}
