import { AbstractStrategy } from './abstract-strategy';
import { NotifierRef } from '../notifier-ref';
export declare class BottomLeftStrategy extends AbstractStrategy {
    protected getStyleNewNotifier(notifierRef: NotifierRef): {
        bottom: string;
        left: string;
    };
    protected getStyleNotifierPosition(divNotifier: HTMLDivElement, clientHeight: number): {
        bottom: string;
        left: string;
    };
    protected getStyleDeleteNotifier(elementChange: HTMLDivElement, clientHeightElementDelete: number): {
        bottom: string;
        left: string;
    };
}
