import React from 'react'; export interface Props { /** * 是否垂直显示 */ column?: boolean; /** * 子元素 */ children?: React.ReactNode | any; /** * 添加自定义类名 */ className?: string; } /** * 弹窗按钮组件 */ declare function DialogActions(props: Props): JSX.Element; export default DialogActions;