/// <reference path="platforms/android/bubble-navigation.android.d.ts" />
import { BubbleNavigationBase, BubbleNavigationItemBase } from './bubble-navigation.common';
export declare class BubbleNavigation extends BubbleNavigationBase {
    nativeView: any;
    private viewID;
    readonly android: any;
    createNativeView(): Object;
    initNativeView(): void;
    bindTabs(tabs: BubbleNavigationItem[]): void;
    protected selectTabNative(index: number): void;
}
export declare class BubbleNavigationItem extends BubbleNavigationItemBase {
    constructor(title: string, icon: string, colorActive?: string, colorInactive?: string);
}
