import React from 'react';
interface SpeechlyReadButtonProps {
    position: {
        x: number;
        y: number;
    } | null;
    onRead: (text: string) => void;
    onPause?: () => void;
    onResume?: () => void;
    onStop?: () => void;
    selectedText: string;
    isLoading?: boolean;
    isPlaying?: boolean;
    isPaused?: boolean;
}
declare const SpeechlyReadButton: ({ position, onRead, onPause, onResume, onStop, selectedText, isLoading, isPlaying, isPaused, }: SpeechlyReadButtonProps) => React.ReactNode;
export default SpeechlyReadButton;
