import { FailbotBackend } from './failbot-backend'; export interface FailbotOptions { app: string; catalogService?: string; backends: FailbotBackend[]; } export declare class Failbot { app: string; catalogService: string | undefined; backends: FailbotBackend[]; constructor(opts: FailbotOptions); /** * Populate default context from settings. Since settings commonly comes from * ENV, this allows setting defaults for the context via the environment. */ getFailbotContext(): { [key: string]: string | undefined; }; report(error: Error, metadata?: { [key: string]: unknown; }): Array>; } //# sourceMappingURL=failbot.d.ts.map