import * as React from 'react'; /** * Input — shadcn/WealthX * Base: npx shadcn\@latest add input * WealthX: removed rounded-md (square corners), added font-sans. */ type InputProps = React.ComponentProps<"input">; declare const Input: React.ForwardRefExoticComponent, HTMLInputElement>, "ref"> & React.RefAttributes>; export { Input, type InputProps };