import * as React from "react"; interface PlayButtonProps { isPlaying: boolean; onPlay?: () => void; onPause?: () => void; } /** Play/pause button used in timeline components. * @internal */ export declare function PlayButton({ isPlaying, onPlay, onPause }: PlayButtonProps): React.JSX.Element; export {}; //# sourceMappingURL=PlayButton.d.ts.map