UNPKG

fnglish-notebook

Version:

A cross-platform CLI tool for English learning with translation, voice pronunciation, and Notion integration. Supports Windows, macOS, and Linux.

12 lines (11 loc) 293 B
import React from 'react'; interface ClaudeInputProps { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void; placeholder?: string; label?: string; mask?: string; } export declare const ClaudeInput: React.FC<ClaudeInputProps>; export {};