import { ReactElement } from 'react';
import { PlayerStore } from '../stores/PlayerStore';
import { PlayQueueStore } from '../stores/PlayQueueStore';
export declare const bottomBarHeight = 80;
interface BottomBarProps {
    playerStore: PlayerStore;
    playQueueStore: PlayQueueStore;
}
export declare const BottomBar: (({ playerStore, playQueueStore }: BottomBarProps) => ReactElement) & {
    displayName: string;
};
export {};
