import { Value } from "../value"; declare type Class = new (...args: any[]) => T; export declare class InternalError extends Error { message: string; constructor(message: string); static wrong_target(target: Value, opts: { expected: Array>; }): InternalError; static wrong_target_t(target_t: Value, opts: { expected: Array>; }): InternalError; } export {};