import React from 'react';
export type PlayPauseButtonSize = 'small' | 'medium' | 'large' | 'xLarge' | 'xxLarge';
export interface PlayPauseButtonProps {
    isPlaying?: boolean;
    onClick?: () => void;
    color?: string;
    /**
     * @default 'medium'
     */
    size?: PlayPauseButtonSize;
}
export declare const PlayPauseButton: React.FC<PlayPauseButtonProps>;
