/**
 * Copyright (c) ACT, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @prettier
 */
import { DialogProps as MuiDialogProps } from '@mui/material';
import { ReactElement } from 'react';
export type DialogProps = MuiDialogProps & {
    onClose?: (event: {}, reason: 'backdropClick' | 'escapeKeyDown' | 'closeIconClick') => void;
    title?: string;
};
/**
 * # Dialog
 *
 *
 * @param formSwitchProps
 */
export declare function Dialog({ children, onClose, title, ...dialogProps }: DialogProps): ReactElement<DialogProps>;
export declare namespace Dialog {
    var defaultProps: {
        onClose: undefined;
        title: undefined;
    };
}
export default Dialog;
//# sourceMappingURL=index.d.ts.map