import { SpacingType } from "../../types"; export interface BaseInputProps { className?: string; onFocus?: () => void; onChange?: (event: Event) => void; onTextChange?: (value: string) => void; selectOnFocus?: boolean; size?: SpacingType; tag?: 'input' | 'textarea'; [props: string]: any; } export declare const BaseInput: ({ className, onFocus, onChange, onTextChange, selectOnFocus, size, tag: Tag, inputRef, ...props }: BaseInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;