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