/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { FluentUITypes } from '@msrvida/fluentui-react-cdn-typings'; export interface IDialogProps extends FluentUITypes.IDialogProps { title?: string; children?: React.ReactNode; buttons?: JSX.Element | JSX.Element[]; } export declare function Dialog(props: IDialogProps): JSX.Element;