import { IPlayQueueStore } from '../../media-player.play-queue.abstractions/interfaces/IPlayQueueStore';
import { ReactElement } from 'react';
interface PlayQueueCommandBarProps {
    playQueue: IPlayQueueStore;
}
export declare const PlayQueueCommandBar: (({ playQueue }: PlayQueueCommandBarProps) => ReactElement) & {
    displayName: string;
};
export {};
