import * as React from 'react'; import { ThemeReactorStyleSheet } from '../common'; export const styleSheet: ThemeReactorStyleSheet; interface DialogActionsProps { /** * The content of the component. */ /** * Useful to extend the style applied to components. */ classes?: any, /** * @ignore */ className?: string, } export default function DialogActions(props: DialogActionsProps): JSX.Element;