import React from 'react'; import { BaseProps, IconButtonProps } from '../types'; export interface SoundButtonProps extends BaseProps { PlayProps?: IconButtonProps; } declare const SoundButton: (props: SoundButtonProps) => React.JSX.Element; export default SoundButton;