import React from 'react'; export interface BumpInputProps { placeholder?: string; type?: string; value?: any; onChange?: (value: any) => void; leftIcon?: any; onLeftClick?: () => void; rightIcon?: any; onRightClick?: () => void; } export declare const BumpInput: React.FC;