import React from "react"; export type BottomBarItem = { imagePath: string; label: string; url: string; isNetwork?: boolean; }; interface BottomToolbarWithSliderProps { backgroundColor?: string; items?: BottomBarItem[]; username?: string; autoSlideInterval?: number; } export declare const BottomToolbarWithSlider: React.FC; export {};