import React from 'react';
import { IMediaButtonStandAlone } from './types/mediaButton';
/**
 * @description
 * MediaButton component is used to show a button with an icon.
 * @param {React.PropsWithChildren<IMediaButtonStandAlone>} props
 * @returns {JSX.Element}
 */
export declare const MediaButtonStandalone: React.ForwardRefExoticComponent<IMediaButtonStandAlone & React.RefAttributes<HTMLButtonElement>>;
