import React from "react";
import { InputProps } from "@/components/ui/input";
interface InputWithButtonProps {
    inputType: InputProps["type"];
    inputPlaceholder: string;
    buttonText: string;
}
declare const InputWithButton: React.FC<InputWithButtonProps>;
export { InputWithButton };
