import { ReactElement } from 'react';
import { PlayQueueStore } from '../stores/PlayQueueStore';
interface PlayQueueTableProps {
    playQueueStore: PlayQueueStore;
}
export declare const PlayQueueTable: (({ playQueueStore }: PlayQueueTableProps) => ReactElement) & {
    displayName: string;
};
export {};
