import React from 'react'; export type SessionActionType = 'newSession' | 'rename' | 'kill'; interface SessionActionsProps { sessionLabel: string; onSelect: (action: SessionActionType) => void; onCancel: () => void; } declare const SessionActions: React.FC; export default SessionActions;