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