import React from 'react'; interface InputBoxProps { value?: string; onSubmit: (value: string) => void; onChange?: (value: string) => void; placeholder?: string; onPasteStart?: () => void; onPasteEnd?: () => void; provider?: string; } export declare const InputBox: React.FC; export {}; //# sourceMappingURL=InputBox.d.ts.map