/** * An error which will not log any backtrace. * * All errors with the property `noBacktraceLog` set to `true` will not show a * backtrace on the console. */ export declare class SilentError extends Error { noBacktraceLog: boolean; constructor(message: any); }