type CatchResultConstructorData = { catch: boolean; display: boolean; log: boolean; error?: string; }; declare class CatchResult { catch: boolean; display: boolean; log: boolean; error?: string; constructor({ catch: catchErr, display: displayErr, log: logErr, error }: CatchResultConstructorData); isCatched(): boolean; logError(): boolean; displayError(): boolean; } export { CatchResult }; export type { CatchResultConstructorData }; //# sourceMappingURL=CatchResult.d.ts.map