import React, { ElementType } from 'react'; import { ButtonBaseProps } from '@mui/material'; export interface AppStoreButtonProps extends ButtonBaseProps { /** * store to be shown * @default google-play */ variant?: 'google-play' | 'apple-store'; } /** * Simple button with the application store image */ export declare const AppStoreButton: React.FC;