import React from 'react';

interface InputWithButtonProps {
    onSubmit: (value: string) => void;
}
declare const InputWithButton: React.FC<InputWithButtonProps>;

export { type InputWithButtonProps, InputWithButton as default };
