import { Initializer } from "../index";
export interface ExceptionHandlerAPI {
    reporters: Array<any>;
    report: Function;
    loader?: Function;
    action?: Function;
    task?: Function;
}
/**
 * Handlers for when things go wrong.
 */
export declare class Exceptions extends Initializer {
    constructor();
    relevantDetails(): string[];
    initialize(config: any): Promise<void>;
}
