import { ClaudeProcess } from '../../types/processTracker';
interface ProcessActionsProps {
    process: ClaudeProcess;
    onAction: (pid: number, action: 'stop' | 'restart' | 'kill') => void;
    disabled?: boolean;
}
export default function ProcessActions({ process, onAction, disabled }: ProcessActionsProps): import("react/jsx-runtime").JSX.Element;
export {};
