import React from 'react';
interface IconsPropsModel {
    icon: React.ReactNode;
    text: string;
    toRoute?: () => void;
    active?: boolean;
}
export interface BottomBarModel {
    options: Array<IconsPropsModel>;
    variant?: 'float' | 'fixed';
    isTextEnabled?: boolean;
    activeColor?: string;
    backgroundColor?: string;
    foregroundColor?: string;
    floatIconColor?: string;
    borderVariant?: 'none' | 'middle' | 'contained';
    isDivider?: boolean;
    indexFloat?: number;
}
export declare const BottomBar: React.FC<BottomBarModel>;
export {};
