import { ErrorReportBaseConstructorArgs } from './ErrorReportBase'; export interface ErrorReportCreateArgs extends Omit { kind?: string; } export declare function createErrorReportBaseArgs(args: ErrorReportCreateArgs): { kind: string; config: { maxStringLength: number; maxSerializationDepth: number; }; originalError: Error; message?: string | undefined; details?: Record | undefined; };