import { SvgIconProps } from '@mui/material'; import { IconButtonProps } from '@mui/material/IconButton'; import { ComponentType, FC } from 'react'; export interface BigCenteredButtonProps { Icon: ComponentType; onClick?: VoidFunction; classNames?: string; iconButtonProps?: IconButtonProps; } /** * A component that adds a big centered icon button with corresponding styles and backdrop * @category React Component */ export declare const BigCenteredButton: FC;