import React from 'react'; interface ConfigureCustomCommandProps { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void; onCancel: () => void; } declare const ConfigureCustomCommand: React.FC; export default ConfigureCustomCommand;