import React from 'react'; export interface ActionPanelProps { title?: string; onPositiveAction?: () => void; onNegativeAction?: () => void; positiveActionName?: string; negativeActionName?: string; } declare const ActionPanel: React.FC; export { ActionPanel };