/******************************************************************************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. * * SPDX-License-Identifier: EPL-2.0 ********************************************************************************/ import { FunctionComponent, MouseEventHandler, PropsWithChildren } from 'react'; import { SxProps, Theme } from '@mui/material'; export declare const ButtonWithProgress: FunctionComponent>; export interface ButtonWithProgressProps { working: boolean; color?: 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning' | undefined; error?: boolean; autoFocus?: boolean; onClick: MouseEventHandler; title?: string; sx?: SxProps; } //# sourceMappingURL=button-with-progress.d.ts.map