import { TypeError } from "../../index.js"; import { I18nLocalizerResult } from "../core.js"; import { AiScriptI18nMessages } from "./index.js"; export declare const typeErrorMessage: { ja: { NotAssignableType(dest: string, value: string): string; AlreadyDeclaredVariable(name: string): string; CanNotCall(type: string): string; InvalidArgumentError(pos: number, dest: string, but: string): string; MissingArgumentError(pos: number, dest: string): string; CanNotAssignToImmutableVariable(name: string): string; UnDeclaredVariable(name: string): string; CanNotReadProperty(target: string, name: string): string; }; }; export declare const typeErrorLocalizer: (error: TypeError) => I18nLocalizerResult;