import { Notification, NotifierConfig, Stage, CLIOptions } from '../types';
export declare class Event {
    changedFiles: string[];
    catalogPath: string;
    commitRange: string;
    options: CLIOptions;
    constructor({ catalogPath, changedFiles, commitRange, options, }: {
        catalogPath: string;
        changedFiles: string[];
        commitRange?: string;
        options: CLIOptions;
    });
    process(): Promise<Notification[]>;
    static getSlackMessage(config: NotifierConfig, notification: Notification, stage: Stage, actionUrl: string): any;
}
//# sourceMappingURL=Event.d.ts.map