import { ErrorCode, ErrorProps } from "fenextjs-interface/cjs/Error"; export interface ErrorFenextjsProps extends ErrorProps { input?: string; } export declare class ErrorFenextjs extends Error { code: ErrorCode; message: string; msg?: string; input?: string; data?: D; constructor({ code, data, message, input }: ErrorFenextjsProps); }