import React from 'react'; interface ActionButtonsProps { onSave?: () => void; onSaveDraft?: () => void; } export function ActionButtons({ onSave, onSaveDraft }: ActionButtonsProps) { return (