import { default as React } from 'react'; export type BaseInputType = "normal" | "area"; export interface BaseInputProps { value: string; onChange: (e: React.ChangeEvent) => void; placeholder?: string; children?: React.ReactNode; isDisabled?: boolean; inputType: BaseInputType; containerStyle?: React.CSSProperties; inputStyle?: React.CSSProperties; underlineStyle?: React.CSSProperties; } declare const BaseInput: (({ value, onChange, placeholder, children, isDisabled, inputType, containerStyle, inputStyle, underlineStyle, }: BaseInputProps) => import("react/jsx-runtime").JSX.Element) & { LeftElement: ({ children }: { children?: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; }; export default BaseInput;