import { ButtonProps as MuiButtonProps } from '@mui/material/Button'; export type ButtonProps = Omit & { blinking?: boolean; variant?: 'success' | 'warning' | 'alert' | 'info' | 'white' | 'dark' | 'light'; }; export declare const Button: import("@emotion/styled").StyledComponent & { blinking?: boolean | undefined; variant?: "success" | "warning" | "alert" | "info" | "white" | "dark" | "light" | undefined; } & import("@mui/system").MUIStyledCommonProps, {}, {}>;