import { EventEmitter } from '@angular/core';
export interface BsCalendarOptions {
    bsRole: string;
    offset?: number;
}
export declare class BsCalendarOptionsClass implements BsCalendarOptions {
    bsRole: string;
    offset: number;
    onUpdate: EventEmitter<BsCalendarOptionsClass>;
    private _offset;
    update(value: BsCalendarOptions): void;
    readonly isLeft: boolean;
    readonly isRight: boolean;
}
