import React from 'react'; import { DialogProps } from './Dialog'; import { ActionPanelProps } from './ActionPanel'; interface StyleProps { width?: number | string; } export interface ActionDialogDialogProps extends StyleProps, DialogProps, ActionPanelProps { open: boolean; onClose: () => void; value?: string; onCancel?: () => void; } declare const ActionDialog: React.FC; export { ActionDialog };