import type { ErrorKind } from "./errors"; import type { Metadata } from "@khanacademy/wonder-stuff-core"; type Options = { metadata?: Metadata | null | undefined; }; export declare class PerseusError extends Error { kind: ErrorKind; metadata: Metadata | null | undefined; constructor(message: string, kind: ErrorKind, options?: Options); } export {};