import { ChimeNotifierOptions, IPipelineNotification, PipelineNotificationBindOptions } from '../'; /** * Properties to initialize ChimeNotification */ export interface ChimeNotificationProps extends ChimeNotifierOptions { } /** * Notify events on pipeline to a Chime room. */ export declare class ChimeNotification implements IPipelineNotification { private readonly props; constructor(props: ChimeNotificationProps); bind(options: PipelineNotificationBindOptions): void; }