import { PropsWithChildren } from 'react';
export interface PlayButtonProps extends PropsWithChildren {
    onPlay: () => void;
    className?: string;
    isActive?: boolean;
    dir?: string;
    style?: React.CSSProperties;
}
export declare const PlayButton: import('react').MemoExoticComponent<({ onPlay, className, children, isActive, dir, style, }: PlayButtonProps) => import("react").JSX.Element>;
