/// import { StandardTextFieldProps } from "@mui/material"; interface InputFieldWithButtonInterface extends StandardTextFieldProps { placeholder?: string; buttonLabel: string; onClick: () => void; isLight?: boolean; } declare const InputFieldWithButton: ({ placeholder, buttonLabel, onClick, isLight, ...props }: InputFieldWithButtonInterface) => JSX.Element; export default InputFieldWithButton;